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 __WANDERINGVENDOR__H__
#define __WANDERINGVENDOR__H__
#ifndef WANDERINGVENDOR_H
#define WANDERINGVENDOR_H
#include "CppScripts.h"
@@ -10,4 +10,4 @@ public:
void OnTimerDone(Entity* self, std::string timerName) override;
};
#endif //!__WANDERINGVENDOR__H__
#endif //!WANDERINGVENDOR_H

View File

@@ -1,5 +1,5 @@
#ifndef __FRICTIONVOLUMESERVER__H__
#define __FRICTIONVOLUMESERVER__H__
#ifndef FRICTIONVOLUMESERVER_H
#define FRICTIONVOLUMESERVER_H
#include "CppScripts.h"
@@ -10,4 +10,4 @@ private:
const float DefaultFrictionAmount = 1.5f;
};
#endif //!__FRICTIONVOLUMESERVER__H__
#endif //!FRICTIONVOLUMESERVER_H

View File

@@ -1,5 +1,5 @@
#ifndef __NTNAOMIDIRTSERVER__H__
#define __NTNAOMIDIRTSERVER__H__
#ifndef NTNAOMIDIRTSERVER_H
#define NTNAOMIDIRTSERVER_H
#include "VisToggleNotifierServer.h"
@@ -8,4 +8,4 @@ public:
void OnStartup(Entity* self) override;
};
#endif //!__NTNAOMIDIRTSERVER__H__
#endif //!NTNAOMIDIRTSERVER_H

View File

@@ -1,5 +1,5 @@
#ifndef __VISTOGGLENOTIFIERSERVER__H__
#define __VISTOGGLENOTIFIERSERVER__H__
#ifndef VISTOGGLENOTIFIERSERVER_H
#define VISTOGGLENOTIFIERSERVER_H
#include "CppScripts.h"
@@ -12,4 +12,4 @@ private:
std::map<int32_t, std::string> m_GameVariables;
};
#endif //!__VISTOGGLENOTIFIERSERVER__H__
#endif //!VISTOGGLENOTIFIERSERVER_H

View File

@@ -1,5 +1,5 @@
#ifndef __NTPIPEVISIBILITYSERVER__H__
#define __NTPIPEVISIBILITYSERVER__H__
#ifndef NTPIPEVISIBILITYSERVER_H
#define NTPIPEVISIBILITYSERVER_H
#include "CppScripts.h"
@@ -8,4 +8,4 @@ public:
void OnQuickBuildComplete(Entity* self, Entity* target) override;
};
#endif //!__NTPIPEVISIBILITYSERVER__H__
#endif //!NTPIPEVISIBILITYSERVER_H

View File

@@ -1,5 +1,5 @@
#ifndef __NTBCSUBMITSERVER__H__
#define __NTBCSUBMITSERVER__H__
#ifndef NTBCSUBMITSERVER_H
#define NTBCSUBMITSERVER_H
#include "CppScripts.h"
@@ -8,4 +8,4 @@ public:
void OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) override;
};
#endif //!__NTBCSUBMITSERVER__H__
#endif //!NTBCSUBMITSERVER_H

View File

@@ -1,5 +1,5 @@
#ifndef __NTNAOMIBREADCRUMBSERVER__H__
#define __NTNAOMIBREADCRUMBSERVER__H__
#ifndef NTNAOMIBREADCRUMBSERVER_H
#define NTNAOMIBREADCRUMBSERVER_H
#include "CppScripts.h"
@@ -8,4 +8,4 @@ public:
void OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) override;
};
#endif //!__NTNAOMIBREADCRUMBSERVER__H__
#endif //!NTNAOMIBREADCRUMBSERVER_H

View File

@@ -1,6 +1,6 @@
#pragma once
#ifndef __FIREFIRSTSKILLONSTARTUP__H__
#define __FIREFIRSTSKILLONSTARTUP__H__
#ifndef FIREFIRSTSKILLONSTARTUP_H
#define FIREFIRSTSKILLONSTARTUP_H
#include "CppScripts.h"
@@ -9,4 +9,4 @@ public:
void OnStartup(Entity* self) override;
};
#endif //!__FIREFIRSTSKILLONSTARTUP__H__
#endif //!FIREFIRSTSKILLONSTARTUP_H

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

View File

@@ -1,5 +1,5 @@
#ifndef FVRACEPILLARSERVER__H
#define FVRACEPILLARSERVER__H
#ifndef FVRACEPILLARSERVER_H
#define FVRACEPILLARSERVER_H
#include "CppScripts.h"
@@ -9,4 +9,4 @@ protected:
void PlayAnimation(const std::string animName, const std::string group, const LOT lot);
};
#endif // FVRACEPILLARSERVER__H
#endif // FVRACEPILLARSERVER_H

View File

@@ -1,5 +1,5 @@
#ifndef __LUCGENERICINTERACT__H__
#define __LUCGENERICINTERACT__H__
#ifndef LUCGENERICINTERACT_H
#define LUCGENERICINTERACT_H
#include "CppScripts.h"
@@ -8,5 +8,5 @@ public:
void OnUse(Entity* self, Entity* user) override;
};
#endif //!__LUCGENERICINTERACT__H__
#endif //!LUCGENERICINTERACT_H

View File

@@ -1,5 +1,5 @@
#ifndef __WBLROBOTCITIZEN__H__
#define __WBLROBOTCITIZEN__H__
#ifndef WBLROBOTCITIZEN_H
#define WBLROBOTCITIZEN_H
#include "CppScripts.h"
@@ -10,4 +10,4 @@ public:
void OnTimerDone(Entity* self, std::string timerName) override;
};
#endif //!__WBLROBOTCITIZEN__H__
#endif //!WBLROBOTCITIZEN_H