Commit 184f1fe3 authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: Get rid of the SetDCOrg entry point.

parent 1c677178
......@@ -1476,18 +1476,6 @@ BOOL CDECL X11DRV_GetDCOrgEx( X11DRV_PDEVICE *physDev, LPPOINT lpp )
}
/***********************************************************************
* SetDCOrg (X11DRV.@)
*/
DWORD CDECL X11DRV_SetDCOrg( X11DRV_PDEVICE *physDev, INT x, INT y )
{
DWORD ret = MAKELONG( physDev->dc_rect.left + physDev->drawable_rect.left,
physDev->dc_rect.top + physDev->drawable_rect.top );
physDev->dc_rect.left = x - physDev->drawable_rect.left;
physDev->dc_rect.top = y - physDev->drawable_rect.top;
return ret;
}
static unsigned char *get_icm_profile( unsigned long *size )
{
Atom type;
......
......@@ -46,7 +46,6 @@
@ cdecl SetBitmapBits(long ptr long) X11DRV_SetBitmapBits
@ cdecl SetBkColor(ptr long) X11DRV_SetBkColor
@ cdecl SetDCBrushColor(ptr long) X11DRV_SetDCBrushColor
@ cdecl SetDCOrg(ptr long long) X11DRV_SetDCOrg
@ cdecl SetDCPenColor(ptr long) X11DRV_SetDCPenColor
@ cdecl SetDIBColorTable(ptr long long ptr) X11DRV_SetDIBColorTable
@ cdecl SetDIBits(ptr long long long ptr ptr long) X11DRV_SetDIBits
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment