winex11: Get rid of the SetDCOrg entry point.
This commit is contained in:
parent
1c67717876
commit
184f1fe331
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue