File: ida.h

package info (click to toggle)
ida 0.12
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 712 kB
  • ctags: 1,027
  • sloc: ansic: 9,413; sh: 152; makefile: 103; perl: 12
file content (28 lines) | stat: -rw-r--r-- 699 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
struct ARGS {
    int  debug;
    int  help;
    int  pcd_res;
    int  sane_res;
    int  testload;
};

extern struct ARGS       args;
extern int               pcd_res;

extern Widget             app_shell;
extern XtAppContext       app_context;
extern Display            *dpy;
extern struct ida_viewer  *ida;

void action_cb(Widget widget, XtPointer clientdata, XtPointer call_data);
void destroy_cb(Widget widget, XtPointer clientdata, XtPointer call_data);

void ptr_register(Widget widget);
void ptr_unregister(Widget widget);
void ptr_busy(void);
void ptr_idle(void);

void do_save_print(void);
void resize_shell(void);
char* load_tmpfile(char *base);
void new_file(char *name, int complain);