gdi32: Get rid of the SetDCOrg driver entry point.
This commit is contained in:
parent
1fd7159cae
commit
1c67717876
|
@ -163,7 +163,6 @@ static struct graphics_driver *create_driver( HMODULE module )
|
|||
GET_FUNC(SetBkColor);
|
||||
GET_FUNC(SetBkMode);
|
||||
GET_FUNC(SetDCBrushColor);
|
||||
GET_FUNC(SetDCOrg);
|
||||
GET_FUNC(SetDCPenColor);
|
||||
GET_FUNC(SetDIBColorTable);
|
||||
GET_FUNC(SetDIBits);
|
||||
|
|
|
@ -121,7 +121,6 @@ static const DC_FUNCTIONS EMFDRV_Funcs =
|
|||
EMFDRV_SetBkColor, /* pSetBkColor */
|
||||
EMFDRV_SetBkMode, /* pSetBkMode */
|
||||
NULL, /* pSetDCBrushColor */
|
||||
NULL, /* pSetDCOrg */
|
||||
NULL, /* pSetDCPenColor */
|
||||
NULL, /* pSetDIBColorTable */
|
||||
NULL, /* pSetDIBits */
|
||||
|
|
|
@ -161,7 +161,6 @@ typedef struct tagDC_FUNCS
|
|||
COLORREF (CDECL *pSetBkColor)(PHYSDEV,COLORREF);
|
||||
INT (CDECL *pSetBkMode)(PHYSDEV,INT);
|
||||
COLORREF (CDECL *pSetDCBrushColor)(PHYSDEV, COLORREF);
|
||||
DWORD (CDECL *pSetDCOrg)(PHYSDEV,INT,INT);
|
||||
COLORREF (CDECL *pSetDCPenColor)(PHYSDEV, COLORREF);
|
||||
UINT (CDECL *pSetDIBColorTable)(PHYSDEV,UINT,UINT,const RGBQUAD*);
|
||||
INT (CDECL *pSetDIBits)(PHYSDEV,HBITMAP,UINT,UINT,LPCVOID,const BITMAPINFO*,UINT);
|
||||
|
|
|
@ -119,7 +119,6 @@ static const DC_FUNCTIONS MFDRV_Funcs =
|
|||
MFDRV_SetBkColor, /* pSetBkColor */
|
||||
MFDRV_SetBkMode, /* pSetBkMode */
|
||||
NULL, /* pSetDCBrushColor*/
|
||||
NULL, /* pSetDCOrg */
|
||||
NULL, /* pSetDCPenColor*/
|
||||
NULL, /* pSetDIBColorTable */
|
||||
NULL, /* pSetDIBits */
|
||||
|
|
Loading…
Reference in New Issue