mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 15:21:48 +00:00
6bab975972
git-svn-id: https://svn.eduke32.com/eduke32@214 1a8010ca-5511-0410-912e-c29ae57300e0
12 lines
227 B
C
Executable file
12 lines
227 B
C
Executable file
// List of internally-known GRP files
|
|
#define numgrpfiles 6
|
|
struct grpfile {
|
|
const char *name;
|
|
int crcval;
|
|
int size;
|
|
struct grpfile *next;
|
|
} grpfiles[numgrpfiles], *foundgrps;
|
|
|
|
int ScanGroups(void);
|
|
void FreeGroups(void);
|
|
|