mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-27 21:44:24 -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
|
@ -10,14 +10,14 @@ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|||
WITHWARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
*/
|
||||
|
||||
#ifndef __FIT_H__
|
||||
#define __FIT_H__
|
||||
#ifndef FIT_H
|
||||
#define FIT_H
|
||||
|
||||
#include <QByteArray>
|
||||
#include "basetypes.h"
|
||||
|
||||
// Make sure we use right packing rules
|
||||
#pragma pack(push,1)
|
||||
#pragma pack(push, 1)
|
||||
|
||||
// Memory address of a pointer to FIT, 40h back from the end of flash chip
|
||||
#define FIT_POINTER_OFFSET 0x40
|
||||
|
@ -63,4 +63,4 @@ typedef struct _INTEL_MICROCODE_HEADER {
|
|||
|
||||
#pragma pack(pop)
|
||||
|
||||
#endif
|
||||
#endif // FIT_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue