]>
Commit | Line | Data |
---|---|---|
c2f83f0a | 1 | /** @file\r |
2 | Guids used for the GPT (GUID Partition Table)\r | |
3 | \r | |
4 | GPT defines a new disk partitioning scheme and also describes \r | |
5 | usage of the legacy Master Boot Record (MBR) partitioning scheme. \r | |
6 | \r | |
7 | Copyright (c) 2006 - 2007, Intel Corporation\r | |
8 | All rights reserved. This program and the accompanying materials \r | |
9 | are licensed and made available under the terms and conditions of the BSD License \r | |
10 | which accompanies this distribution. The full text of the license may be found at \r | |
11 | http://opensource.org/licenses/bsd-license.php \r | |
12 | \r | |
13 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r | |
14 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r | |
15 | \r | |
c2f83f0a | 16 | @par Revision Reference:\r |
17 | GUIDs defined in UEFI 2.1 spec.\r | |
18 | \r | |
19 | **/\r | |
20 | \r | |
21 | #ifndef __GPT_GUID_H__\r | |
22 | #define __GPT_GUID_H__\r | |
23 | \r | |
24 | #define EFI_PART_TYPE_UNUSED_GUID \\r | |
25 | { \\r | |
26 | 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } \\r | |
27 | }\r | |
28 | \r | |
29 | #define EFI_PART_TYPE_EFI_SYSTEM_PART_GUID \\r | |
30 | { \\r | |
31 | 0xc12a7328, 0xf81f, 0x11d2, {0xba, 0x4b, 0x00, 0xa0, 0xc9, 0x3e, 0xc9, 0x3b } \\r | |
32 | }\r | |
33 | \r | |
34 | #define EFI_PART_TYPE_LEGACY_MBR_GUID \\r | |
35 | { \\r | |
36 | 0x024dee41, 0x33e7, 0x11d3, {0x9d, 0x69, 0x00, 0x08, 0xc7, 0x81, 0xf3, 0x9f } \\r | |
37 | }\r | |
38 | \r | |
39 | extern EFI_GUID gEfiPartTypeUnusedGuid;\r | |
40 | extern EFI_GUID gEfiPartTypeSystemPartGuid;\r | |
41 | extern EFI_GUID gEfiPartTypeLegacyMbrGuid;\r | |
42 | \r | |
43 | #endif\r |