00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _JAVASOFT_JAWT_MD_H_
00009 #define _JAVASOFT_JAWT_MD_H_
00010
00011 #include <windows.h>
00012 #include "jawt.h"
00013
00014 #ifdef __cplusplus
00015 extern "C" {
00016 #endif
00017
00018
00019
00020
00021
00022 typedef struct jawt_Win32DrawingSurfaceInfo {
00023
00024 union {
00025 HWND hwnd;
00026 HBITMAP hbitmap;
00027 void* pbits;
00028 };
00029
00030
00031
00032
00033 HDC hdc;
00034 HPALETTE hpalette;
00035 } JAWT_Win32DrawingSurfaceInfo;
00036
00037 #ifdef __cplusplus
00038 }
00039 #endif
00040
00041 #endif