Fixed types

Signed-off-by: Kevin Alavik (puffer) <kevin@alavik.se>
This commit is contained in:
Kevin Alavik (puffer) 2024-07-09 11:48:59 +02:00 committed by GitHub
parent 9544dc67a5
commit 6a0f30a1ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,8 +6,8 @@ typedef char efi_int8_t;
typedef unsigned char efi_uint8_t; typedef unsigned char efi_uint8_t;
typedef short efi_int16_t; typedef short efi_int16_t;
typedef unsigned short efi_uint16_t; typedef unsigned short efi_uint16_t;
typedef efi_int efi_int32_t; typedef int efi_int32_t;
typedef unsigned efi_int efi_uint32_t; typedef unsigned int efi_uint32_t;
#if defined(_X64) #if defined(_X64)
typedef long efi_int64_t; typedef long efi_int64_t;
typedef unsigned long efi_uint64_t; typedef unsigned long efi_uint64_t;