diff options
author | Max <mparisi@stevens.edu> | 2020-10-24 15:07:58 -0400 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-10-24 15:07:58 -0400 |
commit | 8f73a39edf782bd2e6c91130aac685b8dd267001 (patch) | |
tree | c72f79d6b07db5e91579d60cbc1cb21f37dec1c0 /include/SDK/OS/OSInterrupt.h | |
parent | b4751c259e3bc0bb166cffc54061c7d9577ba0dc (diff) |
match up to func_801DC0C8 with two nonmatchings
Diffstat (limited to 'include/SDK/OS/OSInterrupt.h')
-rw-r--r-- | include/SDK/OS/OSInterrupt.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/SDK/OS/OSInterrupt.h b/include/SDK/OS/OSInterrupt.h new file mode 100644 index 0000000..9bb3bda --- /dev/null +++ b/include/SDK/OS/OSInterrupt.h @@ -0,0 +1,15 @@ +#ifndef POKEREVO_OSINTERRUPT_H
+#define POKEREVO_OSINTERRUPT_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void OSDisableInterrupts(void);
+void OSRestoreInterrupts(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_OSINTERRUPT_H
|