3dphotoshoot

view src/assman.h @ 21:4ca4e3c5a754

port to C++ completed, shader programs now use the SdrProg class
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 11 Jun 2015 04:56:33 +0300
parents aef7f51f6397
children d7fe157c402d
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);
11 long ass_ftell(ass_file *fp);
13 size_t ass_fread(void *buf, size_t size, size_t count, ass_file *fp);
16 #endif /* ASSMAN_H_ */