mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
11 lines
224 B
C
11 lines
224 B
C
#ifndef JAUDIO_MEMORY_H
|
|
#define JAUDIO_MEMORY_H
|
|
|
|
#include "types.h"
|
|
#include "jaudio_NES/audiostruct.h"
|
|
|
|
extern void Nas_HeapInit(ALHeap* heap, u8* base, s32 len);
|
|
extern void* Nas_HeapAlloc(ALHeap* heap, s32 size);
|
|
|
|
#endif
|