Rev 1205 | Rev 2543 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1652 | terminx | 1 | //------------------------------------------------------------------------- |
2 | /* |
||
3 | Copyright (C) 2010 EDuke32 developers and contributors |
||
4 | |||
5 | This file is part of EDuke32. |
||
6 | |||
7 | EDuke32 is free software; you can redistribute it and/or |
||
8 | modify it under the terms of the GNU General Public License version 2 |
||
9 | as published by the Free Software Foundation. |
||
10 | |||
11 | This program is distributed in the hope that it will be useful, |
||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
||
14 | |||
15 | See the GNU General Public License for more details. |
||
16 | |||
17 | You should have received a copy of the GNU General Public License |
||
18 | along with this program; if not, write to the Free Software |
||
19 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
||
20 | */ |
||
21 | //------------------------------------------------------------------------- |
||
22 | |||
241 | terminx | 23 | #ifndef __grpscan_h__ |
24 | #define __grpscan_h__ |
||
25 | |||
26 | // List of internally-known GRP files |
||
886 | terminx | 27 | #define numgrpfiles 8 |
241 | terminx | 28 | struct grpfile { |
29 | const char *name; |
||
1205 | terminx | 30 | int32_t crcval; |
31 | int32_t size; |
||
32 | int32_t game; |
||
241 | terminx | 33 | struct grpfile *next; |
34 | } grpfiles[numgrpfiles], *foundgrps; |
||
35 | |||
1205 | terminx | 36 | int32_t ScanGroups(void); |
241 | terminx | 37 | void FreeGroups(void); |
38 | |||
39 | #endif |