27 lines
591 B
C
27 lines
591 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>
|
|
|
|
|
|
/* XTLDR configuration data */
|
|
typedef struct _XTBM_CONFIGURATION
|
|
{
|
|
PWCHAR Default;
|
|
PWCHAR Debug;
|
|
BOOLEAN Shell;
|
|
PWCHAR Theme;
|
|
ULONG Timeout;
|
|
PWCHAR Tune;
|
|
} XTBM_CONFIGURATION, *PXTBM_CONFIGURATION;
|
|
|
|
#endif /* __XTDK_BMTYPES_H */
|