/polymer/eduke32/source/grpscan.h |
---|
25,14 → 25,17 |
// List of internally-known GRP files |
#define NUMGRPFILES 9 |
struct grpfile { |
typedef struct grpfile { |
const char *name; |
int32_t crcval; |
int32_t size; |
int32_t game; |
struct grpfile *next; |
} grpfiles[NUMGRPFILES], *foundgrps; |
} grpfile_type; |
extern struct grpfile grpfiles[NUMGRPFILES]; |
extern struct grpfile *foundgrps; |
int32_t ScanGroups(void); |
void FreeGroups(void); |