Files
ac-decomp/include/jaudio_NES/heapctrl.h
T
2025-04-17 01:53:17 -04:00

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