X-Git-Url: https://code.delx.au/refind/blobdiff_plain/72faea12205c95ad6314fcab0b4a5560f0a6e6ee..1dde20f5fa424bacf15aa215e7df2be69a2bdd36:/refind/global.h diff --git a/refind/global.h b/refind/global.h index 30de68c..8acbf7d 100644 --- a/refind/global.h +++ b/refind/global.h @@ -75,7 +75,8 @@ #define TAG_MEMTEST (15) #define TAG_GDISK (16) #define TAG_NETBOOT (17) -#define NUM_TOOLS (18) +#define TAG_CSR_ROTATE (18) +#define NUM_TOOLS (19) #define NUM_SCAN_OPTIONS 10 @@ -184,6 +185,11 @@ // global types +typedef struct _uint32_list { + UINT32 Value; + struct _uint32_list *Next; +} UINT32_LIST; + typedef struct { UINT8 Flags; UINT8 StartCHS1; @@ -306,6 +312,7 @@ typedef struct { CHAR16 *DriverDirs; CHAR16 *IconsDir; CHAR16 *SpoofOSXVersion; + UINT32_LIST *CsrValues; UINTN ShowTools[NUM_TOOLS]; CHAR8 ScanFor[NUM_SCAN_OPTIONS]; // codes of types of loaders for which to scan } REFIT_CONFIG;