Removed '_' symbols in include guards

which are violating DCL51-CPP rule, closing #46
This commit is contained in:
Nikolaj Schlej 2016-04-09 12:47:19 +02:00
parent 1dddafd4b3
commit 80a2d57f62
28 changed files with 103 additions and 98 deletions

View file

@ -10,13 +10,13 @@ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHWARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
*/
#ifndef __ME_H__
#define __ME_H__
#ifndef ME_H
#define ME_H
#include "basetypes.h"
// Make sure we use right packing rules
#pragma pack(push,1)
#pragma pack(push, 1)
const QByteArray ME_VERSION_SIGNATURE("\x24\x4D\x41\x4E", 4); //$MAN
const QByteArray ME_VERSION_SIGNATURE2("\x24\x4D\x4E\x32", 4); //$MN2
@ -32,4 +32,5 @@ typedef struct _ME_VERSION {
// Restore previous packing rules
#pragma pack(pop)
#endif
#endif // ME_H