2006-07-22 05:20:25 +00:00
|
|
|
#ifndef __grpscan_h__
|
|
|
|
#define __grpscan_h__
|
|
|
|
|
2006-07-07 18:41:05 +00:00
|
|
|
// List of internally-known GRP files
|
2008-07-22 09:05:34 +00:00
|
|
|
#define numgrpfiles 8
|
2006-07-07 18:41:05 +00:00
|
|
|
struct grpfile {
|
|
|
|
const char *name;
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t crcval;
|
|
|
|
int32_t size;
|
|
|
|
int32_t game;
|
2006-07-07 18:41:05 +00:00
|
|
|
struct grpfile *next;
|
|
|
|
} grpfiles[numgrpfiles], *foundgrps;
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t ScanGroups(void);
|
2006-07-07 18:41:05 +00:00
|
|
|
void FreeGroups(void);
|
|
|
|
|
2006-07-22 05:20:25 +00:00
|
|
|
#endif
|