File: saddconf.h

package info (click to toggle)
xscorch 0.2.0-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 4,636 kB
  • ctags: 3,399
  • sloc: ansic: 31,504; sh: 8,826; makefile: 467; perl: 16
file content (48 lines) | stat: -rw-r--r-- 1,414 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* $Header: /fridge/cvs/xscorch/sgame/saddconf.h,v 1.12 2004/02/26 06:34:54 justins Exp $ */
/*

   xscorch - saddconf.h       Copyright(c) 2001 Jacob Luna Lundberg
   jacob(at)chaos2.org        http://chaos2.org/~jacob

   Scorched basic read files on the fly stuff


   This program is free software; you can redistribute it and/or modify 
   it under the terms of the GNU General Public License as published by 
   the Free Software Foundation, version 2 of the License ONLY. 

   This program is distributed in the hope that it will be useful, 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software Foundation, 
   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

*/
#ifndef __saddconf_h_included
#define __saddconf_h_included


/* Includes */
#include <xscorch.h>


/* Forward structure decl's */
struct _sc_weapon_config;
struct _sc_accessory_config;


typedef enum _sc_addconf_type {
   SC_ADDCONF_ACCESSORIES,
   SC_ADDCONF_SCORINGS,
   SC_ADDCONF_WEAPONS
} sc_addconf_type;


/* Append to a conf list. */
bool sc_addconf_append_file(sc_addconf_type type, const char *filename, void *container);


#endif /* __saddconf_h_included */