x11misc.h 444 B

123456789101112131415161718192021
  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. /*
  9. * x11misc.c.
  10. */
  11. void x11_ignore_error(Display *disp, unsigned char errcode);
  12. /*
  13. * gtkmisc.c
  14. */
  15. Display *get_x11_display(void);
  16. #endif