0
|
1 /* Compatibility routines based on code from the MIT Xmu library */
|
|
2
|
|
3 /* Synched up with: Not in FSF. */
|
|
4
|
|
5 #ifdef HAVE_XMU
|
|
6
|
|
7 # include <X11/Xmu/CharSet.h>
|
|
8 # include <X11/Xmu/Converters.h>
|
|
9 # include <X11/Xmu/CurUtil.h>
|
|
10 # include <X11/Xmu/Drawing.h>
|
|
11 # include <X11/Xmu/Error.h>
|
|
12
|
|
13 /* Do the EDITRES protocol if running X11R5 (or later) version */
|
|
14 #if (XtSpecificationRelease >= 5)
|
|
15 /* #### No dice if we don't have XMU until someone ports
|
|
16 _XEditResCheckMessages to xmu.c */
|
|
17 #define HACK_EDITRES
|
|
18 #include <X11/Xmu/Editres.h>
|
|
19 #endif /* R5+ */
|
|
20
|
|
21 #else
|
|
22
|
203
|
23 int XmuCursorNameToIndex (CONST char *name);
|
|
24 int XmuReadBitmapDataFromFile (CONST char *filename, unsigned int *width,
|
0
|
25 unsigned int *height, unsigned char **datap,
|
|
26 int *x_hot, int *y_hot);
|
|
27 int XmuPrintDefaultErrorMessage (Display *dpy, XErrorEvent *event, FILE *fp);
|
|
28 void XmuCopyISOLatin1Lowered (char *, CONST char *);
|
|
29
|
|
30 #endif
|
|
31
|