sourceview: Completely get rid of GtkSourceSearchFlags
[anjuta.git] / plugins / js-debugger / plugin.h
blob75af965d17ff52333e1c1af1816695a4ca276857
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 Copyright (C) 2009 Maxim Ermilov <zaspire@rambler.ru>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #ifndef _JS_DEBUGGER_H_
21 #define _JS_DEBUGGER_H_
23 #include <glib.h>
24 #include <libanjuta/anjuta-plugin.h>
25 G_BEGIN_DECLS
27 extern GType js_debugger_get_type (GTypeModule *module);
28 #define ANJUTA_TYPE_PLUGIN_JSDBG (js_debugger_get_type (NULL))
29 #define ANJUTA_PLUGIN_JSDBG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ANJUTA_TYPE_PLUGIN_JSDBG, JSDbg))
30 #define ANJUTA_PLUGIN_JSDBG_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), ANJUTA_TYPE_PLUGIN_JSDBG, JSDbgClass))
31 #define ANJUTA_IS_PLUGIN_JSDBG(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), ANJUTA_TYPE_PLUGIN_JSDbg))
32 #define ANJUTA_IS_PLUGIN_JSDBG_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ANJUTA_TYPE_PLUGIN_JSDBG))
33 #define ANJUTA_PLUGIN_JSDBG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), ANJUTA_TYPE_PLUGIN_JSDBG, JSDbgClass))
35 typedef struct _JSDbg JSDbg;
36 typedef struct _JSDbgClass JSDbgClass;
38 G_END_DECLS
40 #endif