annotate src/xmu.h @ 314:341dac730539 r21-0b55

Import from CVS: tag r21-0b55
author cvs
date Mon, 13 Aug 2007 10:44:22 +0200
parents 850242ba4a81
children 74fd4e045ea6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Compatibility routines based on code from the MIT Xmu library */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 #ifdef HAVE_XMU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 # include <X11/Xmu/CharSet.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 # include <X11/Xmu/Converters.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 # include <X11/Xmu/CurUtil.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 # include <X11/Xmu/Drawing.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 # include <X11/Xmu/Error.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 /* Do the EDITRES protocol if running X11R5 (or later) version */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 #if (XtSpecificationRelease >= 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 /* #### No dice if we don't have XMU until someone ports
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 _XEditResCheckMessages to xmu.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #define HACK_EDITRES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 #include <X11/Xmu/Editres.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 #endif /* R5+ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 0
diff changeset
23 int XmuCursorNameToIndex (CONST char *name);
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 0
diff changeset
24 int XmuReadBitmapDataFromFile (CONST char *filename, unsigned int *width,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 unsigned int *height, unsigned char **datap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 int *x_hot, int *y_hot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 int XmuPrintDefaultErrorMessage (Display *dpy, XErrorEvent *event, FILE *fp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 void XmuCopyISOLatin1Lowered (char *, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31