make include guards standards conforming

fix compile issues
This commit is contained in:
David Markowitz
2024-10-30 00:30:20 -07:00
parent bfe6900c26
commit 9655f0ee45
167 changed files with 497 additions and 497 deletions

View File

@@ -1,5 +1,5 @@
#ifndef __GemPackBase__H__
#define __GemPackBase__H__
#ifndef GemPackBase_H
#define GemPackBase_H
#include "CppScripts.h"
@@ -16,4 +16,4 @@ private:
uint32_t m_SkillId = 0;
};
#endif //!__GemPackBase__H__
#endif //!GemPackBase_H

View File

@@ -1,5 +1,5 @@
#ifndef __GEMPACK__H__
#define __GEMPACK__H__
#ifndef GEMPACK_H
#define GEMPACK_H
#include "CoilBackpackBase.h"
@@ -10,4 +10,4 @@ private:
static const uint32_t skillId = 1488;
};
#endif //!__GEMPACK__H__
#endif //!GEMPACK_H

View File

@@ -1,5 +1,5 @@
#ifndef __SHARDARMOR__H__
#define __SHARDARMOR__H__
#ifndef SHARDARMOR_H
#define SHARDARMOR_H
#include "CoilBackpackBase.h"
@@ -10,4 +10,4 @@ private:
static const uint32_t skillId = 1249;
};
#endif //!__SHARDARMOR__H__
#endif //!SHARDARMOR_H

View File

@@ -1,5 +1,5 @@
#ifndef __TESLAPACK__H__
#define __TESLAPACK__H__
#ifndef TESLAPACK_H
#define TESLAPACK_H
#include "CoilBackpackBase.h"
@@ -10,4 +10,4 @@ private:
static const uint32_t skillId = 1001;
};
#endif //!__TESLAPACK__H__
#endif //!TESLAPACK_H