-
Notifications
You must be signed in to change notification settings - Fork 1
/
cops_rsc.h
72 lines (63 loc) · 1.79 KB
/
cops_rsc.h
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* COPS (c) 1995 - 2003 Sven & Wilfried Behne
* 2004 F.Naumann & O.Skancke
*
* A XCONTROL compatible CPX manager.
*
* This file is part of COPS.
*
* COPS 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; either version 2 of the License, or
* (at your option) any later version.
*
* COPS 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 XaAES; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _cops_rsc_h
#define _cops_rsc_h
#include <gem.h>
#include "global.h"
#define rs_tedinfo rsc_rs_tedinfo
#define rs_ciconblk rsc_rs_ciconblk
#define rs_cicon rsc_rs_cicon
#define rs_iconblk rsc_rs_iconblk
#define rs_bitblk rsc_rs_bitblk
#define rs_frstr fstring_addr
#define rs_frimg rsc_rs_frimg
#define rs_trindex tree_addr
#define rs_object rsc_rs_object
#include "cops_rs.h"
#ifdef WITH_RSC_DEFINITIONS
#include "cops_rs.rsh"
#endif
#ifndef _WORD
#if defined(__GNUC__)
#define _WORD short
#elif defined(__PUREC__) || defined(__AHCC__)
#define _WORD int
#endif
#endif
#undef rs_tedinfo
#undef rs_ciconblk
#undef rs_cicon
#undef rs_iconblk
#undef rs_bitblk
#undef rs_frstr
#undef rs_frimg
#undef rs_trindex
#undef rs_object
extern _WORD save_dflt_alert;
extern _WORD mem_err_alert;
extern _WORD file_err_alert;
extern _WORD fnf_err_alert;
extern _WORD reload_alert;
extern _WORD al_save_header;
extern _WORD al_no_sound_dma;
#endif /* _cops_rsc_h */