summaryrefslogtreecommitdiff
path: root/include/SDK/OS/OSAlloc.h
diff options
context:
space:
mode:
authorred031000 <rubenru09@aol.com>2020-09-13 17:27:26 +0100
committerred031000 <rubenru09@aol.com>2020-09-13 17:27:26 +0100
commit3f33ccb9a723b2e214a76880d4830398698d27db (patch)
treee7ab1e41dddbc8bc0227896c9061e68f9984cc76 /include/SDK/OS/OSAlloc.h
parent6351f79a77797a69ec1a0ed8acc923128b09a514 (diff)
FISRT FUNC DECOMPED, DLInsert
Diffstat (limited to 'include/SDK/OS/OSAlloc.h')
-rw-r--r--include/SDK/OS/OSAlloc.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/SDK/OS/OSAlloc.h b/include/SDK/OS/OSAlloc.h
new file mode 100644
index 0000000..150a5f8
--- /dev/null
+++ b/include/SDK/OS/OSAlloc.h
@@ -0,0 +1,22 @@
+#ifndef POKEREVO_OSALLOC_H
+#define POKEREVO_OSALLOC_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct Cell Cell;
+
+struct Cell {
+ Cell* prev;
+ Cell* next;
+ long size;
+};
+
+Cell *DLInsert(Cell *original, Cell *inserted);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_OSALLOC_H