1 /** @file 2 GUIDs used for UEFI Properties Table in the UEFI 2.5 specification. 3 4 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR> 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 **/ 14 15 #ifndef __EFI_PROPERTIES_TABLE_H__ 16 #define __EFI_PROPERTIES_TABLE_H__ 17 18 #define EFI_PROPERTIES_TABLE_GUID {\ 19 0x880aaca3, 0x4adc, 0x4a04, {0x90, 0x79, 0xb7, 0x47, 0x34, 0x8, 0x25, 0xe5} \ 20 } 21 22 typedef struct { 23 UINT32 Version; 24 UINT32 Length; 25 UINT64 MemoryProtectionAttribute; 26 } EFI_PROPERTIES_TABLE; 27 28 #define EFI_PROPERTIES_TABLE_VERSION 0x00010000 29 30 // 31 // Memory attribute (Not defined bit is reserved) 32 // 33 #define EFI_PROPERTIES_RUNTIME_MEMORY_PROTECTION_NON_EXECUTABLE_PE_DATA 0x1 34 35 extern EFI_GUID gEfiPropertiesTableGuid; 36 37 #endif 38