Apply header guard check
This commit is contained in:
@@ -39,8 +39,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_HASH_SHA2_INTERNAL_HPP
|
||||
#define NAZARA_HASH_SHA2_INTERNAL_HPP
|
||||
#ifndef NAZARA_CORE_HASH_SHA_INTERNAL_HPP
|
||||
#define NAZARA_CORE_HASH_SHA_INTERNAL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
|
||||
@@ -106,4 +106,4 @@ namespace Nz
|
||||
void SHA512_End(SHA_CTX*, UInt8*);
|
||||
}
|
||||
|
||||
#endif /* NAZARA_HASH_SHA2_INTERNAL_HPP */
|
||||
#endif // NAZARA_CORE_HASH_SHA_INTERNAL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_CLOCKIMPL_POSIX_HPP
|
||||
#define NAZARA_CLOCKIMPL_POSIX_HPP
|
||||
#ifndef NAZARA_CORE_POSIX_CLOCKIMPL_HPP
|
||||
#define NAZARA_CORE_POSIX_CLOCKIMPL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
|
||||
@@ -16,4 +16,4 @@ namespace Nz
|
||||
UInt64 ClockImplGetElapsedMilliseconds();
|
||||
}
|
||||
|
||||
#endif // NAZARA_CLOCKIMPL_POSIX_HPP
|
||||
#endif // NAZARA_CORE_POSIX_CLOCKIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_DYNLIBIMPL_HPP
|
||||
#define NAZARA_DYNLIBIMPL_HPP
|
||||
#ifndef NAZARA_CORE_POSIX_DYNLIBIMPL_HPP
|
||||
#define NAZARA_CORE_POSIX_DYNLIBIMPL_HPP
|
||||
|
||||
#include <Nazara/Core/DynLib.hpp>
|
||||
#include <filesystem>
|
||||
@@ -29,4 +29,4 @@ namespace Nz
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_DYNLIBIMPL_HPP
|
||||
#endif // NAZARA_CORE_POSIX_DYNLIBIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_FILEIMPL_HPP
|
||||
#define NAZARA_FILEIMPL_HPP
|
||||
#ifndef NAZARA_CORE_POSIX_FILEIMPL_HPP
|
||||
#define NAZARA_CORE_POSIX_FILEIMPL_HPP
|
||||
|
||||
#ifndef _LARGEFILE64_SOURCE
|
||||
#define _LARGEFILE64_SOURCE
|
||||
@@ -66,4 +66,4 @@ namespace Nz
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_FILEIMPL_HPP
|
||||
#endif // NAZARA_CORE_POSIX_FILEIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_HARDWAREINFOIMPL_POSIX_HPP
|
||||
#define NAZARA_HARDWAREINFOIMPL_POSIX_HPP
|
||||
#ifndef NAZARA_CORE_POSIX_HARDWAREINFOIMPL_HPP
|
||||
#define NAZARA_CORE_POSIX_HARDWAREINFOIMPL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
|
||||
@@ -21,4 +21,4 @@ namespace Nz
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_HARDWAREINFOIMPL_POSIX_HPP
|
||||
#endif // NAZARA_CORE_POSIX_HARDWAREINFOIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_TASKSCHEDULERIMPL_HPP
|
||||
#define NAZARA_TASKSCHEDULERIMPL_HPP
|
||||
#ifndef NAZARA_CORE_POSIX_TASKSCHEDULERIMPL_HPP
|
||||
#define NAZARA_CORE_POSIX_TASKSCHEDULERIMPL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
#include <atomic>
|
||||
@@ -65,4 +65,4 @@ namespace Nz
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_TASKSCHEDULERIMPL_HPP
|
||||
#endif // NAZARA_CORE_POSIX_TASKSCHEDULERIMPL_HPP
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
// this file was automatically generated and should not be edited
|
||||
// no header guards
|
||||
|
||||
// Copyright (C) 2021 Jérôme Leclercq
|
||||
// This file is part of the "Nazara Engine - Core module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
UnicodeCharacter unicodeCharacters[34592] = {
|
||||
{0, Unicode::Category_Other_Control, Unicode::Direction_Boundary_Neutral},
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_CLOCKIMPL_WINDOWS_HPP
|
||||
#define NAZARA_CLOCKIMPL_WINDOWS_HPP
|
||||
#ifndef NAZARA_CORE_WIN32_CLOCKIMPL_HPP
|
||||
#define NAZARA_CORE_WIN32_CLOCKIMPL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
|
||||
@@ -16,4 +16,4 @@ namespace Nz
|
||||
UInt64 ClockImplGetElapsedMilliseconds();
|
||||
}
|
||||
|
||||
#endif // NAZARA_CLOCKIMPL_WINDOWS_HPP
|
||||
#endif // NAZARA_CORE_WIN32_CLOCKIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_DYNLIBIMPL_HPP
|
||||
#define NAZARA_DYNLIBIMPL_HPP
|
||||
#ifndef NAZARA_CORE_WIN32_DYNLIBIMPL_HPP
|
||||
#define NAZARA_CORE_WIN32_DYNLIBIMPL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
#include <Nazara/Core/DynLib.hpp>
|
||||
@@ -33,4 +33,4 @@ namespace Nz
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_DYNLIBIMPL_HPP
|
||||
#endif // NAZARA_CORE_WIN32_DYNLIBIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_FILEIMPL_HPP
|
||||
#define NAZARA_FILEIMPL_HPP
|
||||
#ifndef NAZARA_CORE_WIN32_FILEIMPL_HPP
|
||||
#define NAZARA_CORE_WIN32_FILEIMPL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
#include <Nazara/Core/File.hpp>
|
||||
@@ -44,4 +44,4 @@ namespace Nz
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_FILEIMPL_HPP
|
||||
#endif // NAZARA_CORE_WIN32_FILEIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_HARDWAREINFOIMPL_WINDOWS_HPP
|
||||
#define NAZARA_HARDWAREINFOIMPL_WINDOWS_HPP
|
||||
#ifndef NAZARA_CORE_WIN32_HARDWAREINFOIMPL_HPP
|
||||
#define NAZARA_CORE_WIN32_HARDWAREINFOIMPL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
|
||||
@@ -21,4 +21,4 @@ namespace Nz
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_HARDWAREINFOIMPL_WINDOWS_HPP
|
||||
#endif // NAZARA_CORE_WIN32_HARDWAREINFOIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_TASKSCHEDULERIMPL_HPP
|
||||
#define NAZARA_TASKSCHEDULERIMPL_HPP
|
||||
#ifndef NAZARA_CORE_WIN32_TASKSCHEDULERIMPL_HPP
|
||||
#define NAZARA_CORE_WIN32_TASKSCHEDULERIMPL_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
#include <Nazara/Core/Functor.hpp>
|
||||
@@ -48,4 +48,4 @@ namespace Nz
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_TASKSCHEDULERIMPL_HPP
|
||||
#endif // NAZARA_CORE_WIN32_TASKSCHEDULERIMPL_HPP
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_WINDOWS_TIME_HPP
|
||||
#define NAZARA_WINDOWS_TIME_HPP
|
||||
#ifndef NAZARA_CORE_WIN32_TIME_HPP
|
||||
#define NAZARA_CORE_WIN32_TIME_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
#include <ctime>
|
||||
@@ -16,4 +16,4 @@ namespace Nz
|
||||
time_t FileTimeToTime(FILETIME* time);
|
||||
}
|
||||
|
||||
#endif // NAZARA_WINDOWS_TIME_HPP
|
||||
#endif // NAZARA_CORE_WIN32_TIME_HPP
|
||||
|
||||
Reference in New Issue
Block a user