comparison src/glyphs-eimage.c @ 2563:6bee993389f3

[xemacs-hg @ 2005-02-04 03:01:19 by ben] misc source fixes dumper.c: Include extra DUMP_SLACK when allocating space for exe path. glyphs-eimage.c: Reformat comment. sysproc.h: Delete out-of-date comment about abort.
author ben
date Fri, 04 Feb 2005 03:01:21 +0000
parents 3d8143fc88e1
children 4eb2a8c07cb3
comparison
equal deleted inserted replaced
2562:ecc681180115 2563:6bee993389f3
103 **********************************************************************/ 103 **********************************************************************/
104 104
105 BEGIN_C_DECLS 105 BEGIN_C_DECLS
106 106
107 #ifdef WIN32_NATIVE 107 #ifdef WIN32_NATIVE
108 /* #### Yuck! More horrifitude. tiffio.h, below, includes <windows.h>, which 108 /* #### Yuck! More horrifitude. tiffio.h, below, includes <windows.h>,
109 defines INT32 and INT16, the former differently and incompatibly from jmorecfg.h, 109 which defines INT32 and INT16, the former differently and incompatibly
110 included by jpeglib.h. We can disable the stuff in jmorecfg.h by defining XMD_H 110 from jmorecfg.h, included by jpeglib.h. We can disable the stuff in
111 (clever, huh?); then we define these typedefs the way that <windows.h> wants them 111 jmorecfg.h by defining XMD_H (clever, huh?); then we define these
112 (which is more correct, anyway; jmorecfg.h defines INT32 as `long'). */ 112 typedefs the way that <windows.h> wants them (which is more correct,
113 anyway; jmorecfg.h defines INT32 as `long'). */
113 #define XMD_H 114 #define XMD_H
114 typedef signed int INT32; 115 typedef signed int INT32;
115 typedef signed short INT16; 116 typedef signed short INT16;
116 #endif 117 #endif
117 118