Path: blob/main/sys/contrib/edk2/Include/Guid/Gpt.h
96339 views
/** @file1Guids used for the GPT (GUID Partition Table)23GPT defines a new disk partitioning scheme and also describes4usage of the legacy Master Boot Record (MBR) partitioning scheme.56Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>7SPDX-License-Identifier: BSD-2-Clause-Patent89@par Revision Reference:10GUIDs defined in UEFI 2.1 spec.1112**/1314#ifndef __GPT_GUID_H__15#define __GPT_GUID_H__1617#define EFI_PART_TYPE_UNUSED_GUID \18{ \190x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } \20}2122#define EFI_PART_TYPE_EFI_SYSTEM_PART_GUID \23{ \240xc12a7328, 0xf81f, 0x11d2, {0xba, 0x4b, 0x00, 0xa0, 0xc9, 0x3e, 0xc9, 0x3b } \25}2627#define EFI_PART_TYPE_LEGACY_MBR_GUID \28{ \290x024dee41, 0x33e7, 0x11d3, {0x9d, 0x69, 0x00, 0x08, 0xc7, 0x81, 0xf3, 0x9f } \30}3132extern EFI_GUID gEfiPartTypeUnusedGuid;33extern EFI_GUID gEfiPartTypeSystemPartGuid;34extern EFI_GUID gEfiPartTypeLegacyMbrGuid;3536#endif373839