From f42c11ca60eaa047b9740c5b8a72374fd112734f Mon Sep 17 00:00:00 2001 From: Jozef Nagy Date: Mon, 1 Apr 2024 13:59:36 +0200 Subject: [PATCH] Added TRUE/FALSE definitions --- efi_types.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/efi_types.h b/efi_types.h index e7ca151..50423a3 100644 --- a/efi_types.h +++ b/efi_types.h @@ -24,6 +24,9 @@ typedef char CHAR8; typedef char16_t CHAR16; typedef void VOID; +#define TRUE 1 +#define FALSE 0 + typedef struct { UINT64 Uint64; UINT64 Uint64_1;