32 lines
787 B
C
32 lines
787 B
C
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: sdk/xtdk/bmtypes.h
|
|
* DESCRIPTION: XT Boot Manager structures definitions
|
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
*/
|
|
|
|
#ifndef __XTDK_BMTYPES_H
|
|
#define __XTDK_BMTYPES_H
|
|
|
|
#include <xttypes.h>
|
|
|
|
|
|
/* Debug port type definitions */
|
|
#define XTBL_DEBUGPORT_SCREEN 1
|
|
#define XTBL_DEBUGPORT_SERIAL 2
|
|
|
|
/* XTLDR configuration data */
|
|
typedef struct _XTBM_CONFIGURATION
|
|
{
|
|
PWCHAR Default;
|
|
PWCHAR Debug;
|
|
ULONG DebugPort;
|
|
BOOLEAN Shell;
|
|
PWCHAR Theme;
|
|
ULONG Timeout;
|
|
PWCHAR Tune;
|
|
} XTBM_CONFIGURATION, *PXTBM_CONFIGURATION;
|
|
|
|
#endif /* __XTDK_BMTYPES_H */
|