mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
8 lines
246 B
C
8 lines
246 B
C
#include "base/basictypes.h"
|
|
|
|
// Allocates a buffer that should be freed using free().
|
|
short *wav_read(const char *filename,
|
|
int *num_samples, int *sample_rate,
|
|
int *num_channels);
|
|
// TODO: Non-allocating version.
|