mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-23 11:54:52 +01:00
12 lines
229 B
C
12 lines
229 B
C
#ifndef _RENDER_H
|
|
#define _RENDER_H
|
|
|
|
#include "vgmstream.h"
|
|
|
|
void free_layout(VGMSTREAM* vgmstream);
|
|
void reset_layout(VGMSTREAM* vgmstream);
|
|
int render_layout(sample_t* buf, int32_t sample_count, VGMSTREAM* vgmstream);
|
|
|
|
|
|
#endif
|