summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMax <mparisi@stevens.edu>2020-10-21 00:07:51 -0400
committerMax <mparisi@stevens.edu>2020-10-21 00:07:51 -0400
commit2b2dc15d6b79b51ffb09a9d1698bfa687363c242 (patch)
tree5a5dc9c5039e4fe215e8e86e815f35c612548f96 /include
parenta66cb7497f72a1628834b28328da86b4a33326d9 (diff)
match func_801DB92C
Diffstat (limited to 'include')
-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