Add XTBM_CONFIGURATION structure definition
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 29s
Builds / ExectOS (i686) (push) Successful in 29s

This commit is contained in:
Rafal Kupiec 2023-12-03 14:24:43 +01:00
parent ab7fa5ffa4
commit 55bd9e326f
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 29 additions and 0 deletions

26
sdk/xtdk/bmtypes.h Normal file
View File

@ -0,0 +1,26 @@
/**
* 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 */

View File

@ -41,3 +41,6 @@
/* Architecture specific XT kernel routines */ /* Architecture specific XT kernel routines */
#include ARCH_HEADER(arfuncs.h) #include ARCH_HEADER(arfuncs.h)
#include ARCH_HEADER(hlfuncs.h) #include ARCH_HEADER(hlfuncs.h)
/* Boot Manager specific structures */
#include <bmtypes.h>