mirror of
https://github.com/reactos/wine.git
synced 2025-01-19 10:13:01 +00:00
gdi32: SetAbortProc is not a 16bit function but a 32bit one.
This commit is contained in:
parent
68e887004a
commit
056359cc4e
@ -197,3 +197,18 @@ INT WINAPI AbortDoc(HDC hdc)
|
||||
release_dc_ptr( dc );
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
* SetAbortProc (GDI32.@)
|
||||
*
|
||||
*/
|
||||
INT WINAPI SetAbortProc(HDC hdc, ABORTPROC abrtprc)
|
||||
{
|
||||
DC *dc = get_dc_ptr( hdc );
|
||||
|
||||
if (!dc) return FALSE;
|
||||
dc->pAbortProc = abrtprc;
|
||||
release_dc_ptr( dc );
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -122,20 +122,6 @@ INT16 WINAPI SetAbortProc16(HDC16 hdc16, ABORTPROC16 abrtprc)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* SetAbortProc (GDI32.@)
|
||||
*
|
||||
*/
|
||||
INT WINAPI SetAbortProc(HDC hdc, ABORTPROC abrtprc)
|
||||
{
|
||||
DC *dc = get_dc_ptr( hdc );
|
||||
|
||||
if (!dc) return FALSE;
|
||||
dc->pAbortProc = abrtprc;
|
||||
release_dc_ptr( dc );
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/****************** misc. printer related functions */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user