3dphotoshoot

view src/assman.h @ 17:aef7f51f6397

resource loading works
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 10 Jun 2015 06:56:27 +0300
parents c6952cc82cca
children 4ca4e3c5a754
line source
1 #ifndef ASSMAN_H_
2 #define ASSMAN_H_
4 #include <stdlib.h>
6 typedef void ass_file;
8 ass_file *ass_fopen(const char *fname, const char *mode);
9 void ass_fclose(ass_file *fp);
10 long ass_fseek(ass_file *fp, long offs, int whence);
12 size_t ass_fread(void *buf, size_t size, size_t count, ass_file *fp);
15 #endif /* ASSMAN_H_ */