* configure.in, plugins/glade/plugin.c: Make it work with
[anjuta-git-plugin.git] / plugins / debug-manager / debugger.h
blob47e9c7ded1ccdbf5f3c3a440c9ec58a9b30cd3e3
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 debugger.h
4 Copyright (C) 2005 Sébastien Granjoux
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef DEBUGGER_H
22 #define DEBUGGER_H
24 /*---------------------------------------------------------------------------*/
26 #include "plugin.h"
28 #include <libanjuta/interfaces/ianjuta-debugger.h>
29 #include <libanjuta/interfaces/ianjuta-cpu-debugger.h>
30 #include <libanjuta/anjuta-plugin.h>
32 #include <glib.h>
34 typedef struct _DmaDebuggerQueue DmaDebuggerQueue;
35 typedef struct _DmaDebuggerQueueClass DmaDebuggerQueueClass;
37 #define DMA_DEBUGGER_QUEUE_TYPE (dma_debugger_queue_get_type ())
38 #define DMA_DEBUGGER_QUEUE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), DMA_DEBUGGER_QUEUE_TYPE, DmaDebuggerQueue))
39 #define DMA_DEBUGGER_QUEUE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), DMA_DEBUGGER_QUEUE_TYPE, DmaDebuggerQueueClass))
40 #define IS_DMA_DEBUGGER_QUEUE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DMA_DEBUGGER_QUEUE_TYPE))
41 #define IS_DMA_DEBUGGER_QUEUE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DMA_DEBUGGER_QUEUE_TYPE))
43 GType dma_debugger_queue_get_type (void);
45 DmaDebuggerQueue *dma_debugger_queue_new (AnjutaPlugin *plugin);
46 void dma_debugger_queue_free (DmaDebuggerQueue *this);
48 void dma_debugger_message (DmaDebuggerQueue *this, const gchar* message);
49 void dma_debugger_info (DmaDebuggerQueue *this, const gchar* message);
50 void dma_debugger_warning (DmaDebuggerQueue *this, const gchar* message);
51 void dma_debugger_error (DmaDebuggerQueue *this, const gchar* message);
53 #endif