| 1 | /*++ | |
| 2 | ||
| 3 | Copyright (c) Microsoft Corporation. All rights reserved. | |
| 4 | ||
| 5 | Module Name: | |
| 6 | ||
| 7 | diskguid.h | |
| 8 | ||
| 9 | Abstract: | |
| 10 | ||
| 11 | GPT disk GUIDs. | |
| 12 | ||
| 13 | Revision History: | |
| 14 | ||
| 15 | --*/ | |
| 16 | ||
| 17 | // | |
| 18 | // GPT Partition Type GUIDs | |
| 19 | // | |
| 20 | // need these GUIDs outside conditional includes so that user can | |
| 21 | // #include <ntdddisk.h> in precompiled header | |
| 22 | // #include <initguid.h> in a single source file | |
| 23 | // #include <ntdddisk.h> in that source file a second time to instantiate the GUIDs | |
| 24 | // | |
| 25 | ||
| 26 | #ifdef DEFINE_GUID | |
| 27 | ||
| 28 | // | |
| 29 | // Make sure FAR is defined... | |
| 30 | // | |
| 31 | #ifndef FAR | |
| 32 | #ifdef _WIN32 | |
| 33 | #define FAR | |
| 34 | #else | |
| 35 | #define FAR _far | |
| 36 | #endif | |
| 37 | #endif | |
| 38 | ||
| 39 |
| Lines 40 ... 49 are skipped. |
| 50 | DEFINE_GUID(PARTITION_MSFT_RECOVERY_GUID, 0xDE94BBA4L, 0x06D1, 0x4D40, 0xA1, 0x6A, 0xBF, 0xD5, 0x01, 0x79, 0xD6, 0xAC); // Microsoft recovery partition | |
| 51 | #endif | |
| 52 | ||
| 53 | ||