mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Implemented unpluged DC code.
svn path=/trunk/; revision=5177
This commit is contained in:
parent
93baf2c7ad
commit
2f0ad8d685
2 changed files with 28 additions and 30 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: stubs.c,v 1.25 2003/07/20 00:42:55 jimtabor Exp $
|
||||
/* $Id: stubs.c,v 1.26 2003/07/20 04:00:36 jimtabor Exp $
|
||||
*
|
||||
* reactos/lib/gdi32/misc/stubs.c
|
||||
*
|
||||
|
@ -1862,21 +1862,6 @@ SelectClipPath(
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
SetArcDirection(
|
||||
HDC hdc,
|
||||
int a1
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
@ -1968,20 +1953,6 @@ GetMiterLimit(
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
GetArcDirection(
|
||||
HDC hdc
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
|
@ -8,6 +8,33 @@
|
|||
#include <win32k/kapi.h>
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
SetArcDirection(
|
||||
HDC hdc,
|
||||
int a1
|
||||
)
|
||||
{
|
||||
return W32kSetArcDirection(hdc, a1);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
GetArcDirection(
|
||||
HDC hdc
|
||||
)
|
||||
{
|
||||
return W32kGetArcDirection(hdc);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue