mirror of https://github.com/acidanthera/audk.git
17 lines
365 B
Plaintext
17 lines
365 B
Plaintext
|
|
typedef struct {
|
|
DXE_PCD_DATABASE_INIT Init;
|
|
DXE_PCD_DATABASE_UNINIT Uninit;
|
|
} DXE_PCD_DATABASE;
|
|
|
|
|
|
typedef struct {
|
|
PEI_PCD_DATABASE PeiDb;
|
|
DXE_PCD_DATABASE DxeDb;
|
|
} PCD_DATABASE;
|
|
|
|
#define DXE_NEX_TOKEN_NUMBER (DXE_LOCAL_TOKEN_NUMBER - DXE_EX_TOKEN_NUMBER)
|
|
|
|
#define PCD_TOTAL_TOKEN_NUMBER (PEI_LOCAL_TOKEN_NUMBER + DXE_LOCAL_TOKEN_NUMBER)
|
|
|