raze-gles/polymer/eduke32/source/grpscan.h
terminx 11fc1203fa Game name in window title and some other shit
git-svn-id: https://svn.eduke32.com/eduke32@886 1a8010ca-5511-0410-912e-c29ae57300e0
2008-07-22 09:05:34 +00:00

17 lines
290 B
C

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