summaryrefslogtreecommitdiff
path: root/include/SDK
diff options
context:
space:
mode:
authorRevo <projectrevotpp@hotmail.com>2020-10-22 15:58:49 -0400
committerGitHub <noreply@github.com>2020-10-22 15:58:49 -0400
commit8fd68eac26a17cd4b7a2bdb637d4d1f5497c5201 (patch)
tree8738887e457e1810630882b715783ed34a2838c5 /include/SDK
parenta66cb7497f72a1628834b28328da86b4a33326d9 (diff)
parente59582e0613910f8a47b0d6458975a5205d16d4e (diff)
Merge pull request #151 from mparisi20/master
decompile code_801DB81C and establish some type-naming and .cpp source file layout conventions
Diffstat (limited to 'include/SDK')
-rw-r--r--include/SDK/OS/OSCache.h14
-rw-r--r--include/SDK/os.h15
2 files changed, 29 insertions, 0 deletions
diff --git a/include/SDK/OS/OSCache.h b/include/SDK/OS/OSCache.h
new file mode 100644
index 0000000..489ed0b
--- /dev/null
+++ b/include/SDK/OS/OSCache.h
@@ -0,0 +1,14 @@
+#ifndef POKEREVO_OSCACHE_H
+#define POKEREVO_OSCACHE_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void LCEnable(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_OSCACHE_H
diff --git a/include/SDK/os.h b/include/SDK/os.h
new file mode 100644
index 0000000..10d4153
--- /dev/null
+++ b/include/SDK/os.h
@@ -0,0 +1,15 @@
+#ifndef POKEREVO_OS_H
+#define POKEREVO_OS_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "SDK/OS/OSAlloc.h"
+#include "SDK/OS/OSCache.h"
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_OS_H