INI configuration parser for XTLDR
This commit is contained in:
@@ -11,6 +11,19 @@
|
||||
|
||||
#include <xttypes.h>
|
||||
|
||||
typedef struct _XTBL_INI_SECTION
|
||||
{
|
||||
LIST_ENTRY Flink;
|
||||
LIST_ENTRY Options;
|
||||
PWCHAR SectionName;
|
||||
} XTBL_INI_SECTION, *PXTBL_INI_SECTION;
|
||||
|
||||
typedef struct _XTBL_INI_OPTION
|
||||
{
|
||||
LIST_ENTRY Flink;
|
||||
PWCHAR Name;
|
||||
PWCHAR Value;
|
||||
} XTBL_INI_OPTION, *PXTBL_INI_OPTION;
|
||||
|
||||
/* XTLDR configuration data */
|
||||
typedef struct _XTBM_CONFIGURATION
|
||||
|
Reference in New Issue
Block a user