summaryrefslogtreecommitdiff
path: root/arm7/lib/include/OS_mutex.h
diff options
context:
space:
mode:
authorEgor Ananyin <ananinegor@gmail.com>2020-06-20 09:14:40 +0300
committerEgor Ananyin <ananinegor@gmail.com>2020-06-20 09:14:40 +0300
commit70556fc300ba85dad248d20b3c79c415e2ef88e5 (patch)
tree900bcd9bfbc5101d4d8f01ce057429658909e273 /arm7/lib/include/OS_mutex.h
parentc4263506fa96acc210d1cf356023a3ffde805a0b (diff)
Begin decompiling OS_mutex
Diffstat (limited to 'arm7/lib/include/OS_mutex.h')
-rw-r--r--arm7/lib/include/OS_mutex.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/arm7/lib/include/OS_mutex.h b/arm7/lib/include/OS_mutex.h
new file mode 100644
index 00000000..6b8da6a8
--- /dev/null
+++ b/arm7/lib/include/OS_mutex.h
@@ -0,0 +1,9 @@
+#ifndef GUARD_OS_MUTEX_H
+#define GUARD_OS_MUTEX_H
+
+#include "nitro/OS_mutex_shared.h"
+#include "nitro/types.h"
+
+void OS_InitMutex(OSMutex* mutex);
+
+#endif