16 lines
No EOL
225 B
C
16 lines
No EOL
225 B
C
#ifndef __CWAV_H__
|
|
#define __CWAV_H__
|
|
|
|
#include "../types.h"
|
|
|
|
typedef struct {
|
|
u32 channels;
|
|
u32 sampleRate;
|
|
u32 bitsPerSample;
|
|
u32 dataSize;
|
|
u8* data;
|
|
} CWAV;
|
|
|
|
u8* cwav_build(CWAV wav, u32* size);
|
|
|
|
#endif |