Mercurial > hg > xemacs-beta
diff src/xmu.h @ 412:697ef44129c6 r21-2-14
Import from CVS: tag r21-2-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:20:41 +0200 |
parents | 74fd4e045ea6 |
children | 11054d720c21 |
line wrap: on
line diff
--- a/src/xmu.h Mon Aug 13 11:19:22 2007 +0200 +++ b/src/xmu.h Mon Aug 13 11:20:41 2007 +0200 @@ -2,9 +2,6 @@ /* Synched up with: Not in FSF. */ -#ifndef INCLUDED_xmu_h_ -#define INCLUDED_xmu_h_ - #ifdef HAVE_XMU # include <X11/Xmu/CharSet.h> @@ -12,7 +9,6 @@ # include <X11/Xmu/CurUtil.h> # include <X11/Xmu/Drawing.h> # include <X11/Xmu/Error.h> -# include <X11/Xmu/Misc.h> /* Do the EDITRES protocol if running X11R5 (or later) version */ #if (XtSpecificationRelease >= 5) @@ -24,19 +20,12 @@ #else -int XmuCursorNameToIndex (const char *name); -int XmuReadBitmapDataFromFile (const char *filename, unsigned int *width, +int XmuCursorNameToIndex (CONST char *name); +int XmuReadBitmapDataFromFile (CONST char *filename, unsigned int *width, unsigned int *height, unsigned char **datap, int *x_hot, int *y_hot); int XmuPrintDefaultErrorMessage (Display *dpy, XErrorEvent *event, FILE *fp); -void XmuCopyISOLatin1Lowered (char *, const char *); +void XmuCopyISOLatin1Lowered (char *, CONST char *); -#define Max(x, y) (((x) > (y)) ? (x) : (y)) -#define Min(x, y) (((x) < (y)) ? (x) : (y)) -#define AssignMax(x, y) {if ((y) > (x)) x = (y);} -#define AssignMin(x, y) {if ((y) < (x)) x = (y);} -typedef enum {XtorientHorizontal, XtorientVertical} XtOrientation; +#endif -#endif /* HAVE_XMU */ - -#endif /* INCLUDED_xmu_h_ */