ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
extraLS.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  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * 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, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef WATCHMAKER_EXTRALS_H
23 #define WATCHMAKER_EXTRALS_H
24 
25 #include "watchmaker/types.h"
26 #include "watchmaker/renderer.h"
27 
28 #define MAX_EXTRALS 55
29 
30 #define EXTRALS_SAVE 1
31 #define EXTRALS_LOAD 2
32 #define EXTRALS_OPTIONS 3
33 #define EXTRALS_QUIT 4
34 #define EXTRALS_CLOSE 5
35 #define EXTRALS_NOCONNECTION 6
36 #define EXTRALS_INVALIDNUMBER 7
37 #define EXTRALS_DIAL 8
38 #define EXTRALS_ENTERUSERNUMBER 9
39 #define EXTRALS_DOCUMENTS 10
40 #define EXTRALS_DOCUMENTVIEWER 11
41 #define EXTRALS_EMAILVIEWER 12
42 #define EXTRALS_EMAIL 13
43 #define EXTRALS_AVAILABLEEMAIL 14
44 #define EXTRALS_OK 15
45 #define EXTRALS_CANCEL 16
46 #define EXTRALS_CLEAR 17
47 #define EXTRALS_DIALLING 18
48 #define EXTRALS_SEARCH 19
49 #define EXTRALS_FINDBY 20
50 #define EXTRALS_NAME 21
51 #define EXTRALS_SURNAME 22
52 #define EXTRALS_SUBJECT 23
53 #define EXTRALS_CASENAME 24
54 #define EXTRALS_YEAR 25
55 #define EXTRALS_NODOCUMENTS 26
56 #define EXTRALS_NEWMAIL 27
57 #define EXTRALS_CIAMAINTERMINAL 28
58 #define EXTRALS_GAMEOVER 29
59 #define EXTRALS_EXIT 30
60 #define EXTRALS_PLAYTHEGAME 31
61 #define EXTRALS_LOADAGAME 32
62 #define EXTRALS_MAINMENU 33
63 #define EXTRALS_HELP 34
64 #define EXTRALS_LOGVIEWER 35
65 #define EXTRALS_TONESEQUENCER 36
66 #define EXTRALS_ACQUIRE 37
67 #define EXTRALS_PROCESS 38
68 #define EXTRALS_LOG 39
69 #define EXTRALS_PREVIEW 40
70 #define EXTRALS_SCAN 41
71 #define EXTRALS_SELECTAREA 42
72 #define EXTRALS_SCANPROGRAM 43
73 #define EXTRALS_MUSIC 44
74 #define EXTRALS_SOUND 45
75 #define EXTRALS_SPEECH 46
76 #define EXTRALS_SUBTITLES 47
77 #define EXTRALS_DARRELL 48
78 #define EXTRALS_VICTORIA 49
79 
80 namespace Watchmaker {
81 
82 extern char *ExtraLS[MAX_EXTRALS];
83 
84 void CheckExtraLocalizationStrings(Renderer &renderer, uint32 id);
85 
86 } // End of namespace Watchmaker
87 
88 #endif // WATCHMAKER_EXTRALS_H
Definition: 2d_stuff.h:30