Build: Add some missing include guards.

This commit is contained in:
Unknown W. Brackets 2023-09-07 17:14:07 -07:00
parent 6c3547d7ae
commit cec9dbbdf7
12 changed files with 24 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#pragma once
#include <cstring>
#include <string>
#include <vector>

View File

@ -9,6 +9,8 @@
//
// Zero dependencies apart from stdlib (if you remove the vhjson usage.)
#pragma once
#include <string>
#include <vector>
#include <sstream>

View File

@ -1,3 +1,5 @@
#pragma once
#include <cstdint>
#include "Common/Input/InputState.h"
#include "Common/Math/geom2d.h"

View File

@ -15,6 +15,8 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include <cstdio>
#include "Core/HLE/sceKernelThread.h"
#include "Core/MIPS/MIPSDebugInterface.h"

View File

@ -15,6 +15,8 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include <map>
#include <set>
#include <mutex>

View File

@ -15,6 +15,8 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include <unordered_map>
#include "Core/MIPS/IR/IRJit.h"
#include "Core/MIPS/JitCommon/JitBlockCache.h"

View File

@ -15,6 +15,8 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include <functional>
#include <string>
#include <vector>

View File

@ -18,6 +18,8 @@
// Basic ARM64 disassembler.
// No promises of accuracy, mostly just made to debug JIT code.
#pragma once
#include <cstdint>
typedef bool (*SymbolCallback)(char *buffer, int bufsize, uint8_t *address);

View File

@ -15,6 +15,8 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
enum class WebServerFlags {
DISCS = 1,
DEBUGGER = 2,

View File

@ -15,6 +15,8 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include "GPU/ge_constants.h"
enum class GECmdFormat {

View File

@ -15,6 +15,8 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include "Common/CommonTypes.h"
void GeDescribeVertexType(u32 op, char *buffer, int len = 256);

View File

@ -15,6 +15,8 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include <cstdint>
#include <functional>