Sun Nov 16 07:42:44 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [windows/dce.c] [windows/clipboard.c] [windows/nonclient.c] Bug fixes. * [misc/shell.c] [resources/*] New "About" dialog. Sat Nov 15 17:30:18 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [configure.in] [Makefile.in] Replaced --with-library option by --disable-emulator. The default is now to build both the library and the emulator. Renamed --with options to --enable to follow autoconf guidelines. * [loader/main.c] [miscemu/main.c] (New file) Split initialization in WinelibInit/EmulatorInit. * [loader/*.c] Removed all remaining #ifdef's WINELIB. * [controls/widgets.c] [windows/mdi.c] Converted MDIClientWndProc to 32-bit. * [debugger/break.c] [if1632/signal.c] [include/selectors.h] [scheduler/thread.c] Code and data selector values are now computed at run-time. * [library/libres.c] Moved to loader/ directory. * [misc/main.c] [misc/version.c] (New file) Moved all version stuff to version.c. Cleaned up a bit. * [msdos/dpmi.c] Update the REALMODECALL structure on return from real-mode interrupt. * [windows/event.c] [windows/keyboard.c] Changed the way event coordinates are determined. Don't rely on the ConfigureNotify event values. This should fix all problems with cursor position in -desktop and -managed modes. Sat Nov 15 16:09:36 1997 Slaven Rezic <eserte@cs.tu-berlin.de> * [controls/button.c] (BUTTON_CheckAutoRadioButton): Prevent possible endless loop. Wed Nov 12 03:42:45 1997 Chris Faherty <chrisf@america.com> * [misc/ver.c] Changed VerInstall32A to assume srcdir as destination if destdir is blank. This was causing alot of DLL installation into SYSTEM directory to fail. * [loader/ne_image.c] NE_LoadSegment buffer[100] was too small and getting overruns. Changed it to buffer[200]. Sat Nov 8 06:09:57 1997 Len White <phreak@cgocable.net> * [misc/ddeml.c] [include/ddeml.h] [if1632/ddeml.spec] Added stub functions DdeConnectList(), DdeQueryNextServer(), DdeDisconnectList(), DdeSetUserHandle(), DdeAbandonTransaction(), DdePostAdvise(), DdeCreateDataHandle(), DdeAddData(), DdeGetData(), DdeAccessData(), DdeUnaccessData(), DdeEnableCallback(), DdeCmpStringHandles(). Fri Nov 7 19:44:26 1997 Olaf Flebbe <o.flebbe@science-computing.de> * [files/directory.c] Fix typo in directory.c [broke loading of cdplayer on nt40] * [misc/main.c] Implemented -winver nt40. * [loader/resource.c] [user32.spec] Stubs for CopyAcceleratorTable, Destroy AcceleratorTable. Thu Nov 6 22:37:04 1997 Morten Welinder <welinder@rentec.com> * [files/drive.c] (GetDiskFreeSpace32A): Cap at 2GB. * [include/windows.h] Prototype DrawIconEx and CreateDIBSection32. Define OBM_RADIOCHECK. Add DI_* macros. * [objects/dib.c] [if1632/gdi.spec] CreateDIBSection is a WINAPI. Renamed to CreateDIBSection32. Implement CreateDIBSection16. * [if1632/user.spec] [if1632/user32.spec] Add DrawIconEx. * [objects/cursoricon.c] (CopyIcon32): Fix bogus implementation. * [objects/bitmap.c] (CopyBitmap32): New function. (CopyImage32): Do bitmaps. * [graphics/x11drv/text.c] (X11DRV_ExtTextOut): Change ascent and descent default to avoid zero-thinkness overstrike line. * [include/debugstr.h] [misc/debugstr.c] New files. * [msdos/dpmi.c] Don't prototype do_mscdex. In INT_Int31Handler, handle real-mode int 0x21, ah=0x52. * [msdos/int2f.c] Add dummys for 0x1681 and 0x1682. * [misc/registry.c] Fix memory leaks in RegDeleteKey32W. * [objects/text.c] In TEXT_NextLine, fix another off-by-one bug. * [include/bitmaps/obm_radiocheck] New file. (It a small circle used to radio-button menu items when selected.) * [objects/oembitmap.c] Add obm_radiocheck. * [include/windows.h] [if1632/user32.spec] [controls/menu.c] [if1632/user.spec] Define CheckMenuRadioItem{16,32}. Define GetMenuItemRect{16,32}. Wed Nov 5 11:30:14 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [misc/main.c] Auto adjust versions depending on binary. Tue Nov 4 15:21:00 1997 Kristian Nielsen <kristian.nielsen@risoe.dk> * [controls/listbox.c] Paint full background in listbox items with tab stops enabled. * [if1632/thunk.c] Copy some more message parameter structures (DRAWITEMSTRUCT16, COMPAREITEMSTRUCT16) to the stack segment to fix broken programs that need this. * [windows/dce.c] Only clip sibling windows when the parent has the WS_CLIPSIBLINGS style set. * [windows/focus.c] Make order of events in FOCUS_SwitchFocus() reflect API docs. * [windows/defdlg.c] Fix problem with loss of focus in some dialogs. * [win32/code_page.c] Fix return value for MultiByteToWideChar(). * [BUGS] BCW now works.
322 lines
13 KiB
C
322 lines
13 KiB
C
/*
|
|
* GDI definitions
|
|
*
|
|
* Copyright 1993 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef __WINE_GDI_H
|
|
#define __WINE_GDI_H
|
|
|
|
#include "windows.h"
|
|
#include "ldt.h"
|
|
#include "local.h"
|
|
#include "x11drv.h"
|
|
|
|
/* GDI objects magic numbers */
|
|
#define PEN_MAGIC 0x4f47
|
|
#define BRUSH_MAGIC 0x4f48
|
|
#define FONT_MAGIC 0x4f49
|
|
#define PALETTE_MAGIC 0x4f4a
|
|
#define BITMAP_MAGIC 0x4f4b
|
|
#define REGION_MAGIC 0x4f4c
|
|
#define DC_MAGIC 0x4f4d
|
|
#define DISABLED_DC_MAGIC 0x4f4e
|
|
#define META_DC_MAGIC 0x4f4f
|
|
#define METAFILE_MAGIC 0x4f50
|
|
#define METAFILE_DC_MAGIC 0x4f51
|
|
#define MAGIC_DONTCARE 0xffff
|
|
|
|
typedef struct tagGDIOBJHDR
|
|
{
|
|
HANDLE16 hNext;
|
|
WORD wMagic;
|
|
DWORD dwCount;
|
|
} GDIOBJHDR;
|
|
|
|
|
|
#define OBJ_PEN 1
|
|
#define OBJ_BRUSH 2
|
|
#define OBJ_DC 3
|
|
#define OBJ_METADC 4
|
|
#define OBJ_PAL 5
|
|
#define OBJ_FONT 6
|
|
#define OBJ_BITMAP 7
|
|
#define OBJ_REGION 8
|
|
#define OBJ_METAFILE 9
|
|
#define OBJ_MEMDC 10
|
|
#define OBJ_EXTPEN 11
|
|
#define OBJ_ENHMETADC 12
|
|
#define OBJ_ENHMETAFILE 13
|
|
|
|
|
|
typedef struct tagDeviceCaps
|
|
{
|
|
WORD version; /* 0: driver version */
|
|
WORD technology; /* 2: device technology */
|
|
WORD horzSize; /* 4: width of display in mm */
|
|
WORD vertSize; /* 6: height of display in mm */
|
|
WORD horzRes; /* 8: width of display in pixels */
|
|
WORD vertRes; /* 10: width of display in pixels */
|
|
WORD bitsPixel; /* 12: bits per pixel */
|
|
WORD planes; /* 14: color planes */
|
|
WORD numBrushes; /* 16: device-specific brushes */
|
|
WORD numPens; /* 18: device-specific pens */
|
|
WORD numMarkers; /* 20: device-specific markers */
|
|
WORD numFonts; /* 22: device-specific fonts */
|
|
WORD numColors; /* 24: size of color table */
|
|
WORD pdeviceSize; /* 26: size of PDEVICE structure */
|
|
WORD curveCaps; /* 28: curve capabilities */
|
|
WORD lineCaps; /* 30: line capabilities */
|
|
WORD polygonalCaps; /* 32: polygon capabilities */
|
|
WORD textCaps; /* 34: text capabilities */
|
|
WORD clipCaps; /* 36: clipping capabilities */
|
|
WORD rasterCaps; /* 38: raster capabilities */
|
|
WORD aspectX; /* 40: relative width of device pixel */
|
|
WORD aspectY; /* 42: relative height of device pixel */
|
|
WORD aspectXY; /* 44: relative diagonal width of device pixel */
|
|
WORD pad1[21]; /* 46-86: reserved */
|
|
WORD logPixelsX; /* 88: pixels / logical X inch */
|
|
WORD logPixelsY; /* 90: pixels / logical Y inch */
|
|
WORD pad2[6]; /* 92-102: reserved */
|
|
WORD sizePalette; /* 104: entries in system palette */
|
|
WORD numReserved; /* 106: reserved entries */
|
|
WORD colorRes; /* 108: color resolution */
|
|
} DeviceCaps;
|
|
|
|
|
|
/* Device independent DC information */
|
|
typedef struct
|
|
{
|
|
int flags;
|
|
const DeviceCaps *devCaps;
|
|
|
|
HRGN16 hClipRgn; /* Clip region (may be 0) */
|
|
HRGN16 hVisRgn; /* Visible region (must never be 0) */
|
|
HRGN16 hGCClipRgn; /* GC clip region (ClipRgn AND VisRgn) */
|
|
HPEN16 hPen;
|
|
HBRUSH16 hBrush;
|
|
HFONT16 hFont;
|
|
HBITMAP16 hBitmap;
|
|
HBITMAP16 hFirstBitmap; /* Bitmap selected at creation of the DC */
|
|
HANDLE16 hDevice;
|
|
HPALETTE16 hPalette;
|
|
|
|
WORD ROPmode;
|
|
WORD polyFillMode;
|
|
WORD stretchBltMode;
|
|
WORD relAbsMode;
|
|
WORD backgroundMode;
|
|
COLORREF backgroundColor;
|
|
COLORREF textColor;
|
|
int backgroundPixel;
|
|
int textPixel;
|
|
short brushOrgX;
|
|
short brushOrgY;
|
|
|
|
WORD textAlign; /* Text alignment from SetTextAlign() */
|
|
short charExtra; /* Spacing from SetTextCharacterExtra() */
|
|
short breakTotalExtra; /* Total extra space for justification */
|
|
short breakCount; /* Break char. count */
|
|
short breakExtra; /* breakTotalExtra / breakCount */
|
|
short breakRem; /* breakTotalExtra % breakCount */
|
|
|
|
BYTE bitsPerPixel;
|
|
|
|
INT32 MapMode;
|
|
INT32 GraphicsMode; /* Graphics mode */
|
|
INT32 DCOrgX; /* DC origin */
|
|
INT32 DCOrgY;
|
|
INT32 CursPosX; /* Current position */
|
|
INT32 CursPosY;
|
|
} WIN_DC_INFO;
|
|
|
|
typedef X11DRV_PDEVICE X_DC_INFO; /* Temporary */
|
|
|
|
typedef struct tagDC
|
|
{
|
|
GDIOBJHDR header;
|
|
HDC32 hSelf; /* Handle to this DC */
|
|
const struct tagDC_FUNCS *funcs; /* DC function table */
|
|
void *physDev; /* Physical device (driver-specific) */
|
|
INT32 saveLevel;
|
|
DWORD dwHookData;
|
|
FARPROC16 hookProc;
|
|
|
|
INT32 wndOrgX; /* Window origin */
|
|
INT32 wndOrgY;
|
|
INT32 wndExtX; /* Window extent */
|
|
INT32 wndExtY;
|
|
INT32 vportOrgX; /* Viewport origin */
|
|
INT32 vportOrgY;
|
|
INT32 vportExtX; /* Viewport extent */
|
|
INT32 vportExtY;
|
|
|
|
WIN_DC_INFO w;
|
|
union
|
|
{
|
|
X_DC_INFO x;
|
|
/* other devices (e.g. printer) */
|
|
} u;
|
|
} DC;
|
|
|
|
/* Device functions for the Wine driver interface */
|
|
typedef struct tagDC_FUNCS
|
|
{
|
|
BOOL32 (*pArc)(DC*,INT32,INT32,INT32,INT32,INT32,INT32,INT32,INT32);
|
|
BOOL32 (*pBitBlt)(DC*,INT32,INT32,INT32,INT32,DC*,INT32,INT32,DWORD);
|
|
BOOL32 (*pChord)(DC*,INT32,INT32,INT32,INT32,INT32,INT32,INT32,INT32);
|
|
BOOL32 (*pCreateDC)(DC*,LPCSTR,LPCSTR,LPCSTR,const DEVMODE16*);
|
|
BOOL32 (*pDeleteDC)(DC*);
|
|
BOOL32 (*pDeleteObject)(HGDIOBJ16);
|
|
BOOL32 (*pEllipse)(DC*,INT32,INT32,INT32,INT32);
|
|
BOOL32 (*pEnumDeviceFonts)(DC*,LPLOGFONT16,DEVICEFONTENUMPROC,LPARAM);
|
|
INT32 (*pEscape)(DC*,INT32,INT32,SEGPTR,SEGPTR);
|
|
INT32 (*pExcludeClipRect)(DC*,INT32,INT32,INT32,INT32);
|
|
INT32 (*pExcludeVisRect)(DC*,INT32,INT32,INT32,INT32);
|
|
BOOL32 (*pExtFloodFill)(DC*,INT32,INT32,COLORREF,UINT32);
|
|
BOOL32 (*pExtTextOut)(DC*,INT32,INT32,UINT32,const RECT32*,LPCSTR,UINT32,const INT32*);
|
|
BOOL32 (*pGetCharWidth)(DC*,UINT32,UINT32,LPINT32);
|
|
COLORREF (*pGetPixel)(DC*,INT32,INT32);
|
|
BOOL32 (*pGetTextExtentPoint)(DC*,LPCSTR,INT32,LPSIZE32);
|
|
BOOL32 (*pGetTextMetrics)(DC*,TEXTMETRIC32A*);
|
|
INT32 (*pIntersectClipRect)(DC*,INT32,INT32,INT32,INT32);
|
|
INT32 (*pIntersectVisRect)(DC*,INT32,INT32,INT32,INT32);
|
|
BOOL32 (*pLineTo)(DC*,INT32,INT32);
|
|
BOOL32 (*pMoveToEx)(DC*,INT32,INT32,LPPOINT32);
|
|
INT32 (*pOffsetClipRgn)(DC*,INT32,INT32);
|
|
BOOL32 (*pOffsetViewportOrg)(DC*,INT32,INT32);
|
|
BOOL32 (*pOffsetWindowOrg)(DC*,INT32,INT32);
|
|
BOOL32 (*pPaintRgn)(DC*,HRGN32);
|
|
BOOL32 (*pPatBlt)(DC*,INT32,INT32,INT32,INT32,DWORD);
|
|
BOOL32 (*pPie)(DC*,INT32,INT32,INT32,INT32,INT32,INT32,INT32,INT32);
|
|
BOOL32 (*pPolyPolygon)(DC*,LPPOINT32,LPINT32,UINT32);
|
|
BOOL32 (*pPolygon)(DC*,LPPOINT32,INT32);
|
|
BOOL32 (*pPolyline)(DC*,LPPOINT32,INT32);
|
|
UINT32 (*pRealizePalette)(DC*);
|
|
BOOL32 (*pRectangle)(DC*,INT32,INT32,INT32,INT32);
|
|
BOOL32 (*pRestoreDC)(DC*,INT32);
|
|
BOOL32 (*pRoundRect)(DC*,INT32,INT32,INT32,INT32,INT32,INT32);
|
|
INT32 (*pSaveDC)(DC*);
|
|
BOOL32 (*pScaleViewportExt)(DC*,INT32,INT32,INT32,INT32);
|
|
BOOL32 (*pScaleWindowExt)(DC*,INT32,INT32,INT32,INT32);
|
|
INT32 (*pSelectClipRgn)(DC*,HRGN32);
|
|
HANDLE32 (*pSelectObject)(DC*,HANDLE32);
|
|
HPALETTE32 (*pSelectPalette)(DC*,HPALETTE32,BOOL32);
|
|
COLORREF (*pSetBkColor)(DC*,COLORREF);
|
|
WORD (*pSetBkMode)(DC*,WORD);
|
|
VOID (*pSetDeviceClipping)(DC*);
|
|
INT32 (*pSetDIBitsToDevice)(DC*,INT32,INT32,DWORD,DWORD,INT32,INT32,UINT32,UINT32,LPCVOID,const BITMAPINFO*,UINT32);
|
|
INT32 (*pSetMapMode)(DC*,INT32);
|
|
DWORD (*pSetMapperFlags)(DC*,DWORD);
|
|
COLORREF (*pSetPixel)(DC*,INT32,INT32,COLORREF);
|
|
WORD (*pSetPolyFillMode)(DC*,WORD);
|
|
WORD (*pSetROP2)(DC*,WORD);
|
|
WORD (*pSetRelAbs)(DC*,WORD);
|
|
WORD (*pSetStretchBltMode)(DC*,WORD);
|
|
WORD (*pSetTextAlign)(DC*,WORD);
|
|
INT32 (*pSetTextCharacterExtra)(DC*,INT32);
|
|
DWORD (*pSetTextColor)(DC*,DWORD);
|
|
INT32 (*pSetTextJustification)(DC*,INT32,INT32);
|
|
BOOL32 (*pSetViewportExt)(DC*,INT32,INT32);
|
|
BOOL32 (*pSetViewportOrg)(DC*,INT32,INT32);
|
|
BOOL32 (*pSetWindowExt)(DC*,INT32,INT32);
|
|
BOOL32 (*pSetWindowOrg)(DC*,INT32,INT32);
|
|
BOOL32 (*pStretchBlt)(DC*,INT32,INT32,INT32,INT32,DC*,INT32,INT32,INT32,INT32,DWORD);
|
|
INT32 (*pStretchDIBits)(DC*,INT32,INT32,INT32,INT32,INT32,INT32,INT32,INT32,LPSTR,LPBITMAPINFO,WORD,DWORD);
|
|
} DC_FUNCTIONS;
|
|
|
|
/* DC hook codes */
|
|
#define DCHC_INVALIDVISRGN 0x0001
|
|
#define DCHC_DELETEDC 0x0002
|
|
|
|
#define DCHF_INVALIDATEVISRGN 0x0001
|
|
#define DCHF_VALIDATEVISRGN 0x0002
|
|
|
|
/* DC flags */
|
|
#define DC_MEMORY 0x0001 /* It is a memory DC */
|
|
#define DC_SAVED 0x0002 /* It is a saved DC */
|
|
#define DC_DIRTY 0x0004 /* hVisRgn has to be updated */
|
|
#define DC_THUNKHOOK 0x0008 /* DC hook is in the 16-bit code */
|
|
|
|
/* Last 32 bytes are reserved for stock object handles */
|
|
#define GDI_HEAP_SIZE 0xffe0
|
|
|
|
/* First handle possible for stock objects (must be >= GDI_HEAP_SIZE) */
|
|
#define FIRST_STOCK_HANDLE GDI_HEAP_SIZE
|
|
|
|
/* Stock objects handles */
|
|
|
|
#define NB_STOCK_OBJECTS (SYSTEM_FIXED_FONT + 1)
|
|
|
|
#define STOCK_WHITE_BRUSH ((HBRUSH16)(FIRST_STOCK_HANDLE+WHITE_BRUSH))
|
|
#define STOCK_LTGRAY_BRUSH ((HBRUSH16)(FIRST_STOCK_HANDLE+LTGRAY_BRUSH))
|
|
#define STOCK_GRAY_BRUSH ((HBRUSH16)(FIRST_STOCK_HANDLE+GRAY_BRUSH))
|
|
#define STOCK_DKGRAY_BRUSH ((HBRUSH16)(FIRST_STOCK_HANDLE+DKGRAY_BRUSH))
|
|
#define STOCK_BLACK_BRUSH ((HBRUSH16)(FIRST_STOCK_HANDLE+BLACK_BRUSH))
|
|
#define STOCK_NULL_BRUSH ((HBRUSH16)(FIRST_STOCK_HANDLE+NULL_BRUSH))
|
|
#define STOCK_HOLLOW_BRUSH ((HBRUSH16)(FIRST_STOCK_HANDLE+HOLLOW_BRUSH))
|
|
#define STOCK_WHITE_PEN ((HPEN16)(FIRST_STOCK_HANDLE+WHITE_PEN))
|
|
#define STOCK_BLACK_PEN ((HPEN16)(FIRST_STOCK_HANDLE+BLACK_PEN))
|
|
#define STOCK_NULL_PEN ((HPEN16)(FIRST_STOCK_HANDLE+NULL_PEN))
|
|
#define STOCK_OEM_FIXED_FONT ((HFONT16)(FIRST_STOCK_HANDLE+OEM_FIXED_FONT))
|
|
#define STOCK_ANSI_FIXED_FONT ((HFONT16)(FIRST_STOCK_HANDLE+ANSI_FIXED_FONT))
|
|
#define STOCK_ANSI_VAR_FONT ((HFONT16)(FIRST_STOCK_HANDLE+ANSI_VAR_FONT))
|
|
#define STOCK_SYSTEM_FONT ((HFONT16)(FIRST_STOCK_HANDLE+SYSTEM_FONT))
|
|
#define STOCK_DEVICE_DEFAULT_FONT ((HFONT16)(FIRST_STOCK_HANDLE+DEVICE_DEFAULT_FONT))
|
|
#define STOCK_DEFAULT_PALETTE ((HPALETTE16)(FIRST_STOCK_HANDLE+DEFAULT_PALETTE))
|
|
#define STOCK_SYSTEM_FIXED_FONT ((HFONT16)(FIRST_STOCK_HANDLE+SYSTEM_FIXED_FONT))
|
|
|
|
#define FIRST_STOCK_FONT STOCK_OEM_FIXED_FONT
|
|
#define LAST_STOCK_FONT STOCK_SYSTEM_FIXED_FONT
|
|
|
|
#define LAST_STOCK_HANDLE ((DWORD)STOCK_SYSTEM_FIXED_FONT)
|
|
|
|
/* Device <-> logical coords conversion */
|
|
|
|
#define XDPTOLP(dc,x) \
|
|
(((x)-(dc)->vportOrgX) * (dc)->wndExtX / (dc)->vportExtX+(dc)->wndOrgX)
|
|
#define YDPTOLP(dc,y) \
|
|
(((y)-(dc)->vportOrgY) * (dc)->wndExtY / (dc)->vportExtY+(dc)->wndOrgY)
|
|
#define XLPTODP(dc,x) \
|
|
(((x)-(dc)->wndOrgX) * (dc)->vportExtX / (dc)->wndExtX+(dc)->vportOrgX)
|
|
#define YLPTODP(dc,y) \
|
|
(((y)-(dc)->wndOrgY) * (dc)->vportExtY / (dc)->wndExtY+(dc)->vportOrgY)
|
|
|
|
|
|
/* GDI local heap */
|
|
|
|
extern WORD GDI_HeapSel;
|
|
|
|
#define GDI_HEAP_ALLOC(size) \
|
|
LOCAL_Alloc( GDI_HeapSel, LMEM_FIXED, (size) )
|
|
#define GDI_HEAP_ALLOC_MOVEABLE(size) \
|
|
LOCAL_Alloc( GDI_HeapSel, LMEM_MOVEABLE, (size) )
|
|
#define GDI_HEAP_REALLOC(handle,size) \
|
|
LOCAL_ReAlloc( GDI_HeapSel, (handle), (size), LMEM_FIXED )
|
|
#define GDI_HEAP_FREE(handle) \
|
|
LOCAL_Free( GDI_HeapSel, (handle) )
|
|
|
|
#define GDI_HEAP_LOCK(handle) \
|
|
LOCAL_Lock( GDI_HeapSel, (handle) )
|
|
#define GDI_HEAP_LOCK_SEGPTR(handle) \
|
|
LOCAL_LockSegptr( GDI_HeapSel, (handle) )
|
|
#define GDI_HEAP_UNLOCK(handle) \
|
|
((((HGDIOBJ16)(handle) >= FIRST_STOCK_HANDLE) && \
|
|
((HGDIOBJ16)(handle)<=LAST_STOCK_HANDLE)) ? \
|
|
0 : LOCAL_Unlock( GDI_HeapSel, (handle) ))
|
|
|
|
extern BOOL32 GDI_Init(void);
|
|
extern HGDIOBJ16 GDI_AllocObject( WORD, WORD );
|
|
extern BOOL32 GDI_FreeObject( HGDIOBJ16 );
|
|
extern GDIOBJHDR * GDI_GetObjPtr( HGDIOBJ16, WORD );
|
|
|
|
extern BOOL32 DRIVER_RegisterDriver( LPCSTR name, const DC_FUNCTIONS *funcs );
|
|
extern const DC_FUNCTIONS *DRIVER_FindDriver( LPCSTR name );
|
|
extern BOOL32 DRIVER_UnregisterDriver( LPCSTR name );
|
|
|
|
extern Display * display;
|
|
extern Screen * screen;
|
|
extern Window rootWindow;
|
|
extern int screenWidth, screenHeight, screenDepth;
|
|
|
|
#endif /* __WINE_GDI_H */
|