mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-15 23:54:45 -04:00
Removed '_' symbols in include guards
which are violating DCL51-CPP rule, closing #46
This commit is contained in:
parent
1dddafd4b3
commit
80a2d57f62
28 changed files with 103 additions and 98 deletions
|
@ -14,8 +14,8 @@ routines without the need of backward traversal
|
|||
|
||||
*/
|
||||
|
||||
#ifndef __PARSINGDATA_H__
|
||||
#define __PARSINGDATA_H__
|
||||
#ifndef PARSINGDATA_H
|
||||
#define PARSINGDATA_H
|
||||
|
||||
#include "basetypes.h"
|
||||
|
||||
|
@ -96,6 +96,7 @@ typedef struct _NVRAM_PARSING_DATA {
|
|||
//};
|
||||
} NVRAM_PARSING_DATA;
|
||||
|
||||
// TODO: add more NVRAM-related PD
|
||||
|
||||
typedef struct _PARSING_DATA {
|
||||
UINT8 emptyByte;
|
||||
|
@ -114,4 +115,4 @@ typedef struct _PARSING_DATA {
|
|||
};
|
||||
} PARSING_DATA;
|
||||
|
||||
#endif
|
||||
#endif // NVRAM_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue