1
0
mirror of https://github.com/ScrelliCopter/VGM-Tools synced 2025-02-21 04:09:25 +11:00

neotools: implement adpcma extraction in neoadpcmextract

This commit is contained in:
2023-12-29 00:53:59 +11:00
parent ae14868953
commit 802bdef961
5 changed files with 85 additions and 36 deletions

View File

@@ -28,7 +28,8 @@ typedef FILE nfile;
# define nerror ferror
#endif
typedef struct { uint8_t* data; size_t size, reserved; } Buffer;
typedef struct { void* data; size_t size, reserved; } Buffer;
#define BUFFER_CLEAR() { NULL, 0, 0 }
bool bufferResize(Buffer* buf, size_t size);