Rewrite and reorganize the entire codebase
This commit is contained in:
parent
01c1e3aa2e
commit
937e50d0ee
19 changed files with 1422 additions and 1339 deletions
12
protocols/device_path.h
Normal file
12
protocols/device_path.h
Normal 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 */
|
Loading…
Add table
Add a link
Reference in a new issue