raze-gles/polymer/eduke32/source/grpscan.h
terminx d6914ed108 ass rape
git-svn-id: https://svn.eduke32.com/eduke32@1205 1a8010ca-5511-0410-912e-c29ae57300e0
2009-01-09 09:29:17 +00:00

17 lines
306 B
C

#ifndef __grpscan_h__
#define __grpscan_h__
// List of internally-known GRP files
#define numgrpfiles 8
struct grpfile {
const char *name;
int32_t crcval;
int32_t size;
int32_t game;
struct grpfile *next;
} grpfiles[numgrpfiles], *foundgrps;
int32_t ScanGroups(void);
void FreeGroups(void);
#endif