bannertool/source/3ds/cwav.h
Dorian Wouters fdb409573f Fix header include guards names
Symbols starting with two underscores are reserved, as per the C
standard.
2016-01-27 16:49:48 +01:00

16 lines
217 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