diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-09-13 12:35:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-13 12:35:03 -0400 |
commit | 8a7bfac7d3a81b34be131c76a98cac1f4cf9cb82 (patch) | |
tree | d2a503a323ae06264ebab085d9e3108f7c5eb33c /include/SDK/OS/OSAlloc.h | |
parent | 11effce5c0a8c617662608d05cdf906ff8e73d2c (diff) | |
parent | 9c1b7dcd0a71137bd1193e5753a92607e2b301ad (diff) |
Merge pull request #39 from red031000/master
split OSAudioSystem and decomp first func
Diffstat (limited to 'include/SDK/OS/OSAlloc.h')
-rw-r--r-- | include/SDK/OS/OSAlloc.h | 22 |
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 |