diff options
| author | Jason Rumney | 2002-03-20 21:00:50 +0000 |
|---|---|---|
| committer | Jason Rumney | 2002-03-20 21:00:50 +0000 |
| commit | 73e66133d0988da868c1e3eeaa86e3a20f257506 (patch) | |
| tree | 7055acc1ca025863016c8cb3e7ae93cbf8dbceab /src | |
| parent | e81916d1ba3fcf0a09fb7634f1d0c982714a39d6 (diff) | |
| download | emacs-73e66133d0988da868c1e3eeaa86e3a20f257506.tar.gz emacs-73e66133d0988da868c1e3eeaa86e3a20f257506.zip | |
(struct XImage): Define.
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32gui.h | 9 |
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; | |||
| 78 | typedef HWND Window; | 78 | typedef HWND Window; |
| 79 | typedef HCURSOR Cursor; | 79 | typedef HCURSOR Cursor; |
| 80 | 80 | ||
| 81 | /* Dummy; we don't yet support images in the Windows port */ | 81 | /* Windows equivalent of XImage. */ |
| 82 | typedef int XImage; | 82 | typedef 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 | ||