Replace lodepng by stb_image; add Vorbis banner sound import

This commit is contained in:
Dorian Wouters
2016-01-24 14:59:14 +01:00
parent a345ddaeed
commit 61a1e31ce7
11 changed files with 12154 additions and 7832 deletions

View File

@@ -1,6 +1,8 @@
#ifndef __WAV_H__
#define __WAV_H__
#include <stdio.h>
#include "../types.h"
typedef struct {
@@ -32,7 +34,7 @@ typedef struct {
Data data;
} WAV;
WAV* wav_read(const char* file);
WAV* wav_read(FILE* fd);
void wav_free(WAV* wav);
#endif