This commit is contained in:
2024-09-25 02:19:37 +08:00
parent a2bfc78e8d
commit 47d35aa3a2
95 changed files with 1208 additions and 288 deletions

View File

@@ -99,4 +99,8 @@ template <typename T0> inline constexpr uint16_t SUB42(T0 a, size_t b) {
return cc_type_t(a) >> (b * 8);
}
constexpr byte R3ModId_not_initialized = 0xff;
#include "stubexcept.h"
#endif /* B8D59B54_1674_4C0F_AA2C_611385FF5D03 */

View File

@@ -36,12 +36,4 @@ typedef void *pointer;
typedef char *TerminatedCString;
typedef char *string;
// Can not export enums for some reason
enum R3ModuleId : uint8_t {
R3ModId_unk = 0x00,
R3ModId_not_initialized = 0xff,
};
#endif /* A523F6DB_0645_4DEB_8AEB_3792CB732B49 */

View File

@@ -0,0 +1,10 @@
#ifndef AE625BF8_B0F9_452E_8772_8819F311CB57
#define AE625BF8_B0F9_452E_8772_8819F311CB57
#include <stdexcept>
struct GHStubException : public std::exception {
GHStubException(const char *msg);
};
#endif /* AE625BF8_B0F9_452E_8772_8819F311CB57 */