3dphotoshoot

view src/assman.h @ 16:c6952cc82cca

asset manager, android version
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 09 Jun 2015 18:38:33 +0300
parents 2d48f65da357
children aef7f51f6397
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);
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_ */