Mercurial > hg > xemacs-beta
comparison src/xmu.h @ 0:376386a54a3c r19-14
Import from CVS: tag r19-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:45:50 +0200 |
parents | |
children | 850242ba4a81 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:376386a54a3c |
---|---|
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 | |
23 int XmuCursorNameToIndex (const char *name); | |
24 int XmuReadBitmapDataFromFile (const char *filename, unsigned int *width, | |
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 |