7. 핸들/프로토콜 데이터 베이스 구조 - Part 2
애플리케이션 프로토콜에 대한 기본적인 사용
///
/// 128-bit buffer containing a unique identifier value.
///
typedef GUID EFI_GUID;///
/// 128 bit buffer containing a unique identifier value.
/// Unless otherwise specified, aligned on a 64 bit boundary.
///
typedef struct {
UINT32 Data1;
UINT16 Data2;
UINT16 Data3;
UINT8 Data4[8];
} GUID;/// Printing Guid Using %g Option
Print("GUID=%g\n", myGUID);
Last updated