mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
0207e4fb79
git-svn-id: https://svn.eduke32.com/eduke32@341 1a8010ca-5511-0410-912e-c29ae57300e0
17 lines
290 B
C
Executable file
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
|