mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 10:11:50 +00:00
7cd91e3fc2
git-svn-id: https://svn.eduke32.com/eduke32@234 1a8010ca-5511-0410-912e-c29ae57300e0
16 lines
276 B
C
Executable file
16 lines
276 B
C
Executable file
// List of internally-known GRP files
|
|
#define numgrpfiles 7
|
|
struct grpfile {
|
|
const char *name;
|
|
int crcval;
|
|
int size;
|
|
int game;
|
|
struct grpfile *next;
|
|
} grpfiles[numgrpfiles], *foundgrps;
|
|
|
|
#define GAMEDUKE 0
|
|
#define GAMENAM 1
|
|
|
|
int ScanGroups(void);
|
|
void FreeGroups(void);
|
|
|