mirror of https://github.com/AxioDL/kabufuda.git
Convert to pragma once
This commit is contained in:
parent
37461f2165
commit
e84546be2d
|
@ -1,5 +1,4 @@
|
||||||
#ifndef __KABU_ASYNCIO_HPP__
|
#pragma once
|
||||||
#define __KABU_ASYNCIO_HPP__
|
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <aio.h>
|
#include <aio.h>
|
||||||
|
@ -49,4 +48,3 @@ public:
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __KABU_ASYNCIO_HPP__
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef __KABU_BLOCKALLOCATIONATABLE_HPP__
|
#pragma once
|
||||||
#define __KABU_BLOCKALLOCATIONATABLE_HPP__
|
|
||||||
|
|
||||||
#include "Constants.hpp"
|
#include "Constants.hpp"
|
||||||
|
|
||||||
|
@ -39,4 +38,3 @@ public:
|
||||||
uint16_t numFreeBlocks() const { return m_freeBlocks; }
|
uint16_t numFreeBlocks() const { return m_freeBlocks; }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#endif // __KABU_BLOCKALLOCATIONATABLE_HPP__
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef __KABU_CARD_HPP__
|
#pragma once
|
||||||
#define __KABU_CARD_HPP__
|
|
||||||
|
|
||||||
#include "BlockAllocationTable.hpp"
|
#include "BlockAllocationTable.hpp"
|
||||||
#include "Directory.hpp"
|
#include "Directory.hpp"
|
||||||
|
@ -438,4 +437,3 @@ public:
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __CARD_HPP__
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef __KABU_CONSTANTS_HPP__
|
#pragma once
|
||||||
#define __KABU_CONSTANTS_HPP__
|
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "Util.hpp"
|
#include "Util.hpp"
|
||||||
|
@ -90,4 +89,3 @@ enum class EEncoding : uint16_t
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __KABU_CONSTANTS_HPP__
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef __KABU_DIRECTORY_HPP__
|
#pragma once
|
||||||
#define __KABU_DIRECTORY_HPP__
|
|
||||||
|
|
||||||
#include "File.hpp"
|
#include "File.hpp"
|
||||||
|
|
||||||
|
@ -41,4 +40,3 @@ public:
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __KABU_DIRECTORY_HPP__
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef __KABU_FILE_HPP__
|
#pragma once
|
||||||
#define __KABU_FILE_HPP__
|
|
||||||
|
|
||||||
#include "Constants.hpp"
|
#include "Constants.hpp"
|
||||||
|
|
||||||
|
@ -44,4 +43,3 @@ public:
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __KABU_FILE_HPP__
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef SRAM_HPP
|
#pragma once
|
||||||
#define SRAM_HPP
|
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
@ -73,4 +72,3 @@ union SRAM
|
||||||
extern const SRAM g_SRAM;
|
extern const SRAM g_SRAM;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // SRAM_HPP
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef __KABU_UTIL_HPP__
|
#pragma once
|
||||||
#define __KABU_UTIL_HPP__
|
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
@ -306,4 +305,3 @@ enum class ECardResult
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __KABU_UTIL_HPP__
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef __KABU_WIDESTRINGCONVERT_HPP__
|
#pragma once
|
||||||
#define __KABU_WIDESTRINGCONVERT_HPP__
|
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
@ -9,4 +8,3 @@ std::string WideToUTF8(std::wstring_view src);
|
||||||
std::wstring UTF8ToWide(std::string_view src);
|
std::wstring UTF8ToWide(std::string_view src);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __KABU_WIDESTRINGCONVERT_HPP__
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#ifndef _HECL_WINSUPPORT_H_
|
#pragma once
|
||||||
#define _HECL_WINSUPPORT_H_
|
|
||||||
|
|
||||||
#ifndef WIN32_LEAN_AND_MEAN
|
#ifndef WIN32_LEAN_AND_MEAN
|
||||||
#define WIN32_LEAN_AND_MEAN 1
|
#define WIN32_LEAN_AND_MEAN 1
|
||||||
|
@ -11,4 +10,3 @@
|
||||||
|
|
||||||
void* memmem(const void *haystack, size_t hlen, const void *needle, size_t nlen);
|
void* memmem(const void *haystack, size_t hlen, const void *needle, size_t nlen);
|
||||||
|
|
||||||
#endif // _HECL_WINSUPPORT_H_
|
|
||||||
|
|
Loading…
Reference in New Issue