--- sourceforge.net/trunk/rdesktop/types.h 2002/09/26 14:26:46 207 +++ sourceforge.net/trunk/rdesktop/types.h 2003/01/30 11:15:00 299 @@ -26,8 +26,11 @@ #endif typedef unsigned char uint8; +typedef signed char sint8; typedef unsigned short uint16; +typedef signed short sint16; typedef unsigned int uint32; +typedef signed int sint32; typedef void *HBITMAP; typedef void *HGLYPH; @@ -82,8 +85,8 @@ typedef struct _FONTGLYPH { - uint16 offset; - uint16 baseline; + sint16 offset; + sint16 baseline; uint16 width; uint16 height; HBITMAP pixmap;