Fixed types (this has been tested now dw) #2

Merged
KevinAlavik merged 2 commits from main into main 2024-07-09 09:54:10 +00:00
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -4,7 +4,7 @@
#include "efi.h"
#include "efi_st.h"
#define EFI_ERROR(status) (((INTN)(status)) < 0)
#define EFI_ERROR(status) (((EFI_INTN)(status)) < 0)
#endif /* EFI_EFILIB_H */