mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-28 05:54:50 -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
|
@ -13,18 +13,17 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
|
||||
*/
|
||||
|
||||
#ifndef __PE_IMAGE_H__
|
||||
#define __PE_IMAGE_H__
|
||||
#ifndef PEIMAGE_H
|
||||
#define PEIMAGE_H
|
||||
|
||||
#include <QString>
|
||||
|
||||
#include "basetypes.h"
|
||||
|
||||
// Make sure we use right packing rules
|
||||
#pragma pack(push,1)
|
||||
|
||||
extern QString machineTypeToQString(UINT16 machineType);
|
||||
|
||||
// Make sure we use right packing rules
|
||||
#pragma pack(push, 1)
|
||||
|
||||
//
|
||||
// PE32+ Subsystem type for EFI images
|
||||
//
|
||||
|
@ -724,4 +723,4 @@ typedef struct {
|
|||
|
||||
// Restore previous packing rules
|
||||
#pragma pack(pop)
|
||||
#endif
|
||||
#endif // PEIMAGE_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue