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

12
protocols/device_path.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef EFI_PROTOCOLS_DEVICE_PATH_H
#define EFI_PROTOCOLS_DEVICE_PATH_H
#define EFI_DEVICE_PATH_PROTOCOL_GUID {0x09576e91,0x6d3f,0x11d2,{0x8e,0x39,0x00,0xa0,0xc9,0x69,0x72,0x3b}}
typedef struct _EFI_DEVICE_PATH_PROTOCOL {
UINT8 Type;
UINT8 SubType;
UINT8 Length[2];
} EFI_DEVICE_PATH_PROTOCOL;
#endif /* EFI_PROTOCOLS_DEVICE_PATH_H */