From 3f33ccb9a723b2e214a76880d4830398698d27db Mon Sep 17 00:00:00 2001 From: red031000 Date: Sun, 13 Sep 2020 17:27:26 +0100 Subject: FISRT FUNC DECOMPED, DLInsert --- include/SDK/OS/OSAlloc.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 include/SDK/OS/OSAlloc.h (limited to 'include/SDK/OS/OSAlloc.h') 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 -- cgit v1.2.3