steed/src/sdl-instead/idf.h

14 lines
332 B
C
Raw Normal View History

2011-04-17 18:00:16 +03:00
#ifndef __IDF_H_INCLUDED
#define __IDF_H_INCLUDED
struct _idf_t;
typedef struct _idf_t *idf_t;
extern idf_t idf_init(const char *path);
2011-04-18 11:32:51 +03:00
extern void idf_shrink(idf_t idf);
2011-04-17 18:00:16 +03:00
extern void idf_done(idf_t idf);
extern SDL_RWops *RWFromIdf(idf_t idf, const char *fname);
extern int idf_create(const char *file, const char *path);
#endif