mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
13 lines
272 B
C
13 lines
272 B
C
#ifndef __NEOADPCMEXTRACT_H__
|
|
#define __NEOADPCMEXTRACT_H__
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct { uint8_t* data; size_t size, reserved; } Buffer;
|
|
|
|
int vgmReadSample(FILE* fin, Buffer* buf);
|
|
int vgmScanSample(FILE* file);
|
|
|
|
#endif//__NEOADPCMEXTRACT_H__
|