WiiDuktape/source/data.h
Fries 9f1b00d39d add file support
file loading is implemented with an asset generator script that reads
all the files in the data folder and converts them into c arrays and
puts them inside a c source file.
2024-06-20 18:41:49 -07:00

5 lines
130 B
C

#ifndef DATA_H
#define DATA_H
#include <stddef.h>
int get_file_pointer(const char* filename, void ** data, size_t * size);
#endif