~ubuntu-branches/ubuntu/breezy/tiemu/breezy

« back to all changes in this revision

Viewing changes to src/hid/extern.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien BLACHE
  • Date: 2005-06-02 16:50:15 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050602165015-59ab24414tl2wzol
Tags: 1.99+svn1460-1
* New snapshot.
* debian/control:
  + Updated build-depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef EXTERN_H
2
 
#define EXTERN_H
3
 
 
4
 
#include <gtk/gtk.h>
5
 
 
6
 
#include "struct.h"
7
 
 
8
 
/* Some linked-list for breakpoints */
9
 
extern GList *bkpt_address_list;
10
 
extern GList *bkpt_access_list;
11
 
extern GList *bkpt_vector_list;
12
 
extern GList *bkpt_trap_list;
13
 
 
14
 
/* Used widget */
15
 
extern GtkWidget *debugger_dbox;
16
 
extern GtkWidget *code_clist;
17
 
extern GtkWidget *reg_text;
18
 
extern GtkWidget *data_bkpt_dbox;
19
 
 
20
 
extern gint selected_row;
21
 
extern gint data_bkpt_selected_row;
22
 
extern gint bkpt_encountered;
23
 
 
24
 
#endif