aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2002-03-20 21:00:50 +0000
committerJason Rumney2002-03-20 21:00:50 +0000
commit73e66133d0988da868c1e3eeaa86e3a20f257506 (patch)
tree7055acc1ca025863016c8cb3e7ae93cbf8dbceab /src
parente81916d1ba3fcf0a09fb7634f1d0c982714a39d6 (diff)
downloademacs-73e66133d0988da868c1e3eeaa86e3a20f257506.tar.gz
emacs-73e66133d0988da868c1e3eeaa86e3a20f257506.zip
(struct XImage): Define.
Diffstat (limited to 'src')
-rw-r--r--src/w32gui.h9
1 files changed, 7 insertions, 2 deletions
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;
78typedef HWND Window; 78typedef HWND Window;
79typedef HCURSOR Cursor; 79typedef HCURSOR Cursor;
80 80
81/* Dummy; we don't yet support images in the Windows port */ 81/* Windows equivalent of XImage. */
82typedef int XImage; 82typedef struct _XImage
83{
84 unsigned char * data;
85 BITMAPINFO info;
86 /* Optional RGBQUAD array for palette follows (see BITMAPINFO docs). */
87} XImage;
83 88
84#define FACE_DEFAULT (~0) 89#define FACE_DEFAULT (~0)
85 90