File: x11misc.h

package info (click to toggle)
putty 0.74-1%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,020 kB
  • sloc: ansic: 114,140; python: 4,372; perl: 3,511; sh: 1,563; makefile: 167
file content (20 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * x11misc.h: header file for functions that need to refer to Xlib
 * data types. Has to be separate from unix.h so that we can include
 * it only after including the X headers, which in turn has to be done
 * after putty.h has told us whether NOT_X_WINDOWS is defined.
 */

#ifndef NOT_X_WINDOWS

/*
 * x11misc.c.
 */
void x11_ignore_error(Display *disp, unsigned char errcode);

/*
 * gtkmisc.c
 */
Display *get_x11_display(void);

#endif