mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
22 lines
474 B
C
22 lines
474 B
C
#ifndef APPLE_DEVICE_PATH_H
|
|
#define APPLE_DEVICE_PATH_H
|
|
|
|
#include <Protocol/DevicePath.h>
|
|
|
|
#pragma pack(1)
|
|
|
|
#define APPLE_APFS_VOLUME_DEVICE_PATH_GUID \
|
|
{ 0xBE74FCF7, 0x0B7C, 0x49F3, \
|
|
{ 0x91, 0x47, 0x01, 0xF4, 0x04, 0x2E, 0x68, 0x42 } }
|
|
|
|
typedef PACKED struct {
|
|
VENDOR_DEVICE_PATH Header;
|
|
GUID Uuid;
|
|
} APPLE_APFS_VOLUME_DEVICE_PATH;
|
|
|
|
extern EFI_GUID gAppleApfsVolumeDevicePathGuid;
|
|
|
|
#pragma pack()
|
|
|
|
#endif // APPLE_DEVICE_PATH_H
|