Rewrite and reorganize the entire codebase

This commit is contained in:
Jozef Nagy 2024-03-29 22:39:42 +01:00
parent 01c1e3aa2e
commit 937e50d0ee
No known key found for this signature in database
GPG key ID: 5B49DC29F09685D6
19 changed files with 1422 additions and 1339 deletions

View file

@ -118,4 +118,12 @@ typedef UINTN EFI_TPL;
#define EFI_TEXT_ATTR(Foreground,Background) \
((Foreground) | ((Background) << 4))
// EFI Reset Type
typedef enum {
EfiResetCold,
EfiResetWarm,
EfiResetShutdown,
EfiResetPlatformSpecific
} EFI_RESET_TYPE;
#endif /* EFI_TYPES_H */