x11misc.h 391 B

12345678910111213141516
  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. #endif