mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 09:27:59 +00:00
5935c68288
Correcting a source file name in the docs just now reminded me that I've seen a lot of outdated source file names elsewhere in the code, due to all the reorganisation since we moved to cmake. Here's a giant pass of trying to make them all accurate again.
15 lines
430 B
C
15 lines
430 B
C
/*
|
|
* 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
|
|
|
|
/* Defined in unix/utils */
|
|
void x11_ignore_error(Display *disp, unsigned char errcode);
|
|
Display *get_x11_display(void);
|
|
|
|
#endif
|