From: Jason Rumney Date: Wed, 20 Mar 2002 21:00:50 +0000 (+0000) Subject: (struct XImage): Define. X-Git-Tag: ttn-vms-21-2-B4~16061 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=73e66133d0988da868c1e3eeaa86e3a20f257506;p=emacs.git (struct XImage): Define. --- diff --git a/src/w32gui.h b/src/w32gui.h index 12e77e3fecc..9f59290027c 100644 --- a/src/w32gui.h +++ b/src/w32gui.h @@ -78,8 +78,13 @@ typedef DWORD Time; typedef HWND Window; typedef HCURSOR Cursor; -/* Dummy; we don't yet support images in the Windows port */ -typedef int XImage; +/* Windows equivalent of XImage. */ +typedef struct _XImage +{ + unsigned char * data; + BITMAPINFO info; + /* Optional RGBQUAD array for palette follows (see BITMAPINFO docs). */ +} XImage; #define FACE_DEFAULT (~0)