OpenCore  1.0.4
OpenCore Bootloader
Loading...
Searching...
No Matches
AppleDiskLabel.h
Go to the documentation of this file.
1
13#ifndef APPLE_DISK_LABEL_H
14#define APPLE_DISK_LABEL_H
15
20#define APPLE_DISK_LABEL_PALETTED 1
21
26#define APPLE_DISK_LABEL_BGRA 2
27
31#define APPLE_DISK_LABEL_MAX_WIDTH 340U
32#define APPLE_DISK_LABEL_MAX_HEIGHT 12U
33
34#pragma pack(push, 1)
35
39typedef struct APPLE_DISK_LABEL_ {
40 UINT8 Type;
41 UINT16 Width;
42 UINT16 Height;
43 UINT8 Data[];
45
46#pragma pack(pop)
47
48#endif // APPLE_DISK_LABEL_H
struct APPLE_DISK_LABEL_ APPLE_DISK_LABEL