add ULL suffix to Long Long number.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6738 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2008-11-26 11:27:06 +00:00
parent 1aaf8feb94
commit b6228a086f
1 changed files with 3 additions and 3 deletions

View File

@ -910,7 +910,7 @@ EFI_STATUS
// //
// EFI Runtime Services Table // EFI Runtime Services Table
// //
#define EFI_RUNTIME_SERVICES_SIGNATURE 0x56524553544e5552 #define EFI_RUNTIME_SERVICES_SIGNATURE 0x56524553544e5552ULL
#define EFI_RUNTIME_SERVICES_REVISION EFI_SPECIFICATION_VERSION #define EFI_RUNTIME_SERVICES_REVISION EFI_SPECIFICATION_VERSION
typedef struct { typedef struct {
@ -964,7 +964,7 @@ typedef struct {
// //
// EFI Boot Services Table // EFI Boot Services Table
// //
#define EFI_BOOT_SERVICES_SIGNATURE 0x56524553544f4f42 #define EFI_BOOT_SERVICES_SIGNATURE 0x56524553544f4f42ULL
#define EFI_BOOT_SERVICES_REVISION EFI_SPECIFICATION_VERSION #define EFI_BOOT_SERVICES_REVISION EFI_SPECIFICATION_VERSION
typedef struct { typedef struct {
@ -1081,7 +1081,7 @@ typedef struct {
// //
// EFI System Table // EFI System Table
// //
#define EFI_SYSTEM_TABLE_SIGNATURE 0x5453595320494249 #define EFI_SYSTEM_TABLE_SIGNATURE 0x5453595320494249ULL
#define EFI_SYSTEM_TABLE_REVISION EFI_SPECIFICATION_VERSION #define EFI_SYSTEM_TABLE_REVISION EFI_SPECIFICATION_VERSION
#define EFI_1_02_SYSTEM_TABLE_REVISION ((1 << 16) | 02) #define EFI_1_02_SYSTEM_TABLE_REVISION ((1 << 16) | 02)
#define EFI_1_10_SYSTEM_TABLE_REVISION ((1 << 16) | 10) #define EFI_1_10_SYSTEM_TABLE_REVISION ((1 << 16) | 10)