WiiDuktape/source/assets/include/data.h
Fries 63bb2916ca move duktape code into a static library.
this means i can try out making a launcher that launches into other
javascript engines like quickjs.
2024-06-25 14:08:04 -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