ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
px_definitions.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * Additional copyright for this file:
8  * Copyright (C) 1999-2000 Revolution Software Ltd.
9  * This code is based on source code created by Revolution Software,
10  * used with permission.
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see <http://www.gnu.org/licenses/>.
24  *
25  */
26 
27 namespace ICB {
28 
29 #define BUILD_OUTPUT_EXTENSION "build" // Extension for the file containing the build results
30 #define OBJECT_DEFINITION_EXTENSION "objdef" // Extension for an object definition
31 #define COMPILED_OBJECT_EXTENSION "compobj" // Extension for a compiled object
32 #define COMPILED_SCRIPT_EXTENSION "scrobj" // Extension for a compiled script
33 #define COMBINED_OBJECT_EXTENSION "cbdobj" // Extension for a combined object
34 #define COMPILED_FN_ROUTINES_EXTENSION "fn_dat" // Extension for the compiled fn routine data
35 #define COMPILED_SPEECH_SCRIPT_EXTENSION "spchscrobj" // Compiled speech script
36 
37 // Makefile macro names
38 #define NMAKE_LOCAL_ROOT_MACRO "$(LOCALROOT)"
39 #define NMAKE_COMMON_ROOT_MACRO "$(COMMONROOT)"
40 
41 // Resource gauge definitions
42 #define RESOURCE_VARIABLE_SEARCH_PATTERN "Resource Value:"
43 #define RESOURCE_VARIABLE_SEARCH_PATTERN_LEN 15
44 
45 // Converter program versions
46 #define PXVER_FN_ROUTINES 1 // fn_routines converter version.
47 #define PXVER_SCRIPTCOMPILER 1 // fn_routines converter version.
48 
49 } // End of namespace ICB
Definition: actor.h:32