| #ifndef _EXTRACT_H | |
| #define _EXTRACT_H | |
| typedef struct { | |
| unsigned int OFFSET; | |
| unsigned int SIZE; | |
| unsigned int FLAGS; | |
| _TCHAR * FILENAME; | |
| unsigned int CREATED; | |
| } TOC_ENTRY; | |
| #ifdef UNICODE | |
| #define extract extractW | |
| #define cleanup cleanupW | |
| #define extractFile extractFileW | |
| #endif | |
| extern int extract( _TCHAR* fromfile, _TCHAR* todir ); | |
| extern int extractFile( _TCHAR* fromfile, _TCHAR* todir, _TCHAR* fileName); | |
| extern void cleanup(); | |
| #endif /* _EXTRACT_H */ | |
| /* EOF */ |