mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-27 23:46:02 -04:00
ebb0647e7b
Co-authored-by: roeming <roeming@users.noreply.github.com>
14 lines
205 B
C
14 lines
205 B
C
#ifndef HEAPCTRL_H
|
|
#define HEAPCTRL_H
|
|
#include "types.h"
|
|
|
|
typedef struct jaheap_ {
|
|
void* _00;
|
|
void* _04;
|
|
void* _08;
|
|
} JAHEAP;
|
|
|
|
JAHEAP* Jac_AllocHeap(jaheap_*, jaheap_*, unsigned long);
|
|
|
|
#endif
|