x11misc.h 430 B

123456789101112131415
  1. /*
  2. * x11misc.h: header file for functions that need to refer to Xlib
  3. * data types. Has to be separate from unix.h so that we can include
  4. * it only after including the X headers, which in turn has to be done
  5. * after putty.h has told us whether NOT_X_WINDOWS is defined.
  6. */
  7. #ifndef NOT_X_WINDOWS
  8. /* Defined in unix/utils */
  9. void x11_ignore_error(Display *disp, unsigned char errcode);
  10. Display *get_x11_display(void);
  11. #endif