raze-gles/polymer/eduke32/source/grpscan.h
terminx 0207e4fb79 WW2GI "support"
git-svn-id: https://svn.eduke32.com/eduke32@341 1a8010ca-5511-0410-912e-c29ae57300e0
2006-11-16 23:06:16 +00:00

17 lines
290 B
C
Executable file

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