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 __BRICKDATABASE__H__
#define __BRICKDATABASE__H__
#ifndef BRICKDATABASE_H
#define BRICKDATABASE_H
#pragma once
@@ -13,4 +13,4 @@ namespace BrickDatabase {
const BrickList& GetBricks(const LxfmlPath& lxfmlPath);
};
#endif //!__BRICKDATABASE__H__
#endif //!BRICKDATABASE_H

View File

@@ -1,5 +1,5 @@
#ifndef __CHEATDETECTION__H__
#define __CHEATDETECTION__H__
#ifndef CHEATDETECTION_H
#define CHEATDETECTION_H
#include "dCommonVars.h"
@@ -26,5 +26,5 @@ namespace CheatDetection {
void ReportCheat(User* user, const SystemAddress& sysAddr, const char* messageIfNotSender, ...);
};
#endif //!__CHEATDETECTION__H__
#endif //!CHEATDETECTION_H