MdeModulePkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the MdeModulePkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
committed by
mergify[bot]
parent
7c7184e201
commit
1436aea4d5
@ -20,60 +20,60 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
#define VAR_CHECK_HII_REVISION 0x0002
|
||||
|
||||
typedef struct {
|
||||
UINT16 Revision;
|
||||
UINT16 HeaderLength;
|
||||
UINT32 Length; // Length include this header
|
||||
UINT8 OpCode;
|
||||
UINT8 Reserved;
|
||||
UINT16 Size;
|
||||
UINT32 Attributes;
|
||||
EFI_GUID Guid;
|
||||
//CHAR16 Name[];
|
||||
UINT16 Revision;
|
||||
UINT16 HeaderLength;
|
||||
UINT32 Length; // Length include this header
|
||||
UINT8 OpCode;
|
||||
UINT8 Reserved;
|
||||
UINT16 Size;
|
||||
UINT32 Attributes;
|
||||
EFI_GUID Guid;
|
||||
// CHAR16 Name[];
|
||||
} VAR_CHECK_HII_VARIABLE_HEADER;
|
||||
|
||||
typedef struct {
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
} VAR_CHECK_HII_QUESTION_HEADER;
|
||||
|
||||
typedef struct {
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
//UINTx Data[]; // x = UINT8/UINT16/UINT32/UINT64;
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
// UINTx Data[]; // x = UINT8/UINT16/UINT32/UINT64;
|
||||
} VAR_CHECK_HII_QUESTION_ONEOF;
|
||||
|
||||
typedef struct {
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
} VAR_CHECK_HII_QUESTION_CHECKBOX;
|
||||
|
||||
typedef struct {
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
//UINTx Minimum; // x = UINT8/UINT16/UINT32/UINT64;
|
||||
//UINTx Maximum; // x = UINT8/UINT16/UINT32/UINT64;
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
// UINTx Minimum; // x = UINT8/UINT16/UINT32/UINT64;
|
||||
// UINTx Maximum; // x = UINT8/UINT16/UINT32/UINT64;
|
||||
} VAR_CHECK_HII_QUESTION_NUMERIC;
|
||||
|
||||
typedef struct {
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
UINT8 MaxContainers;
|
||||
//UINTx Data[]; // x = UINT8/UINT16/UINT32/UINT64;
|
||||
UINT8 OpCode;
|
||||
UINT8 Length; // Length include this header
|
||||
UINT16 VarOffset;
|
||||
UINT8 StorageWidth;
|
||||
BOOLEAN BitFieldStore; // Whether the Question is stored in bit field, if TRUE, the VarOffset/StorageWidth will be saved as bit level, otherwise in byte level.
|
||||
UINT8 MaxContainers;
|
||||
// UINTx Data[]; // x = UINT8/UINT16/UINT32/UINT64;
|
||||
} VAR_CHECK_HII_QUESTION_ORDEREDLIST;
|
||||
|
||||
#pragma pack ()
|
||||
|
Reference in New Issue
Block a user