ScummVM API documentation
dbg_defs.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 M4_DBG_DBG_DEFS_H
23 #define M4_DBG_DBG_DEFS_H
24 
25 #include "m4/m4_types.h"
26 #include "m4/dbg/dbg_defs.h"
27 #include "m4/gui/gui_dialog.h"
28 #include "m4/wscript/ws_machine.h"
29 
30 namespace M4 {
31 
32 struct DBGSequSR {
33  DBGSequSR *next;
34  int32 prevSequHash;
35  int32 returnOffset;
36 };
37 
38 struct DBGWatch {
39  DBGWatch *next;
40  DBGWatch *prev;
41  machine *m;
42  Dialog *d;
43  bool moreInfo;
44  bool machStep;
45  int32 sequHash;
46  bool sequStep;
47 };
48 
49 } // namespace M4
50 
51 #endif
Definition: ws_machine.h:130
Definition: dbg_defs.h:38
Definition: database.h:28
Definition: dbg_defs.h:32
Definition: gui_dialog.h:38