mirror of https://github.com/acidanthera/audk.git
SignedCapsulePkg/IniParsingLib: Update struct name
1. Change _SECTION_ITEM to _INI_SECTION_ITEM 2. Change _COMMENT_LINE to _INI_COMMENT_LINE Because _SECTION_ITEM and _COMMENT_LINE are duplicated with the one defined in IntelFrameworkModulePkg\Universal\ FirmwareVolume\UpdateDriverDxe\UpdateDriver.h Cc: Jiewen Yao <jiewen.yao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
This commit is contained in:
parent
9bf6a22239
commit
67c09dd5ce
|
@ -50,8 +50,8 @@
|
|||
// This is default allocation. Reallocation will happen if it is not enough.
|
||||
#define MAX_LINE_LENGTH 512
|
||||
|
||||
typedef struct _SECTION_ITEM SECTION_ITEM;
|
||||
struct _SECTION_ITEM {
|
||||
typedef struct _INI_SECTION_ITEM SECTION_ITEM;
|
||||
struct _INI_SECTION_ITEM {
|
||||
CHAR8 *PtrSection;
|
||||
UINTN SecNameLen;
|
||||
CHAR8 *PtrEntry;
|
||||
|
@ -59,8 +59,8 @@ struct _SECTION_ITEM {
|
|||
SECTION_ITEM *PtrNext;
|
||||
};
|
||||
|
||||
typedef struct _COMMENT_LINE COMMENT_LINE;
|
||||
struct _COMMENT_LINE {
|
||||
typedef struct _INI_COMMENT_LINE COMMENT_LINE;
|
||||
struct _INI_COMMENT_LINE {
|
||||
CHAR8 *PtrComment;
|
||||
COMMENT_LINE *PtrNext;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue