Welcome to mirror list, hosted at ThFree Co, Russian Federation.

x11misc.h « UNIX - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 159d42262f8b8cfcf8ac19bd8400bae592fbbc62 (plain)
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