~ubuntu-branches/debian/lenny/italc/lenny

« back to all changes in this revision

Viewing changes to ica/x11/x11vnc/cleanup.h

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2008-06-17 13:46:54 UTC
  • mfrom: (1.2.1 upstream) (4.1.1 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080617134654-cl0gi4u524cv1ici
Tags: 1:1.0.9~rc3-1
* Package new upstream version
  - upstream ported the code to qt4.4 (Closes: #481974)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _X11VNC_CLEANUP_H
 
2
#define _X11VNC_CLEANUP_H
 
3
 
 
4
/* -- cleanup.h -- */
 
5
 
 
6
extern int trapped_xerror;
 
7
extern int trapped_xioerror;
 
8
extern int trapped_getimage_xerror;
 
9
extern int trapped_record_xerror;
 
10
extern XErrorEvent *trapped_xerror_event;
 
11
 
 
12
extern int crash_debug;
 
13
 
 
14
extern void clean_shm(int quick);
 
15
extern void clean_up_exit (int ret);
 
16
 
 
17
extern int trap_xerror(Display *d, XErrorEvent *error);
 
18
extern int trap_xioerror(Display *d);
 
19
extern int trap_getimage_xerror(Display *d, XErrorEvent *error);
 
20
extern char *xerror_string(XErrorEvent *error);
 
21
extern void initialize_crash_handler(void);
 
22
extern void initialize_signals(void);
 
23
extern void unset_signals(void);
 
24
extern void close_exec_fds(void);
 
25
extern int known_sigpipe_mode(char *s);
 
26
 
 
27
#endif /* _X11VNC_CLEANUP_H */