update gitignore
[swfdec.git] / vivified / core / vivi_debugger.h
blob80a67652e86b89b2c711041108db09af121b1000
1 /* Vivified
2 * Copyright (C) 2007 Benjamin Otte <otte@gnome.org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301 USA
20 #ifndef _VIVI_DEBUGGER_H_
21 #define _VIVI_DEBUGGER_H_
23 #include <swfdec/swfdec.h>
24 #include <vivified/core/vivi_application.h>
26 G_BEGIN_DECLS
29 //typedef struct _ViviDebugger ViviDebugger;
30 typedef struct _ViviDebuggerClass ViviDebuggerClass;
32 #define VIVI_TYPE_DEBUGGER (vivi_debugger_get_type())
33 #define VIVI_IS_DEBUGGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIVI_TYPE_DEBUGGER))
34 #define VIVI_IS_DEBUGGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIVI_TYPE_DEBUGGER))
35 #define VIVI_DEBUGGER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIVI_TYPE_DEBUGGER, ViviDebugger))
36 #define VIVI_DEBUGGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIVI_TYPE_DEBUGGER, ViviDebuggerClass))
37 #define VIVI_DEBUGGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VIVI_TYPE_DEBUGGER, ViviDebuggerClass))
39 struct _ViviDebugger
41 SwfdecAsDebugger debugger;
43 ViviApplication * app; /* the appliction we're playing for */
46 struct _ViviDebuggerClass
48 SwfdecAsDebuggerClass debugger_class;
51 GType vivi_debugger_get_type (void);
54 G_END_DECLS
55 #endif