Changeset 77662 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Include/Guid/SmmVariableCommon.h
- Timestamp:
- Mar 12, 2019 12:40:12 PM (6 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776 /vendor/edk2/current 103735-103757,103769-103776,129194-129237
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Include/Guid/SmmVariableCommon.h
r58466 r77662 2 2 The file defined some common structures used for communicating between SMM variable module and SMM variable wrapper module. 3 3 4 Copyright (c) 2011 - 201 3, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2011 - 2015, Intel Corporation. All rights reserved.<BR> 5 5 This program and the accompanying materials are licensed and made available under 6 6 the terms and conditions of the BSD License that accompanies this distribution. … … 15 15 #ifndef _SMM_VARIABLE_COMMON_H_ 16 16 #define _SMM_VARIABLE_COMMON_H_ 17 18 #include <Protocol/VarCheck.h> 17 19 18 20 #define EFI_SMM_VARIABLE_WRITE_GUID \ … … 66 68 #define SMM_VARIABLE_FUNCTION_LOCK_VARIABLE 8 67 69 70 #define SMM_VARIABLE_FUNCTION_VAR_CHECK_VARIABLE_PROPERTY_SET 9 71 72 #define SMM_VARIABLE_FUNCTION_VAR_CHECK_VARIABLE_PROPERTY_GET 10 73 74 #define SMM_VARIABLE_FUNCTION_GET_PAYLOAD_SIZE 11 75 68 76 /// 69 77 /// Size of SMM communicate header, without including the payload. … … 108 116 typedef SMM_VARIABLE_COMMUNICATE_GET_NEXT_VARIABLE_NAME SMM_VARIABLE_COMMUNICATE_LOCK_VARIABLE; 109 117 118 typedef struct { 119 EFI_GUID Guid; 120 UINTN NameSize; 121 VAR_CHECK_VARIABLE_PROPERTY VariableProperty; 122 CHAR16 Name[1]; 123 } SMM_VARIABLE_COMMUNICATE_VAR_CHECK_VARIABLE_PROPERTY; 124 125 typedef struct { 126 UINTN VariablePayloadSize; 127 } SMM_VARIABLE_COMMUNICATE_GET_PAYLOAD_SIZE; 128 110 129 #endif // _SMM_VARIABLE_COMMON_H_
Note:
See TracChangeset
for help on using the changeset viewer.