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=5171
This commit is contained in:
parent
07ac6a5f63
commit
a3be8dee2e
2 changed files with 28 additions and 31 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: stubs.c,v 1.24 2003/07/20 00:33:55 jimtabor Exp $
|
||||
/* $Id: stubs.c,v 1.25 2003/07/20 00:42:55 jimtabor Exp $
|
||||
*
|
||||
* reactos/lib/gdi32/misc/stubs.c
|
||||
*
|
||||
|
@ -510,20 +510,6 @@ GetFontData(
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
GetGraphicsMode(
|
||||
HDC a0
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
@ -1076,21 +1062,6 @@ SetMapperFlags(
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
SetGraphicsMode(
|
||||
HDC hdc,
|
||||
int iMode
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
|
@ -8,6 +8,33 @@
|
|||
#include <win32k/kapi.h>
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
GetGraphicsMode(
|
||||
HDC a0
|
||||
)
|
||||
{
|
||||
return W32kGetGraphicsMode(a0);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
SetGraphicsMode(
|
||||
HDC hdc,
|
||||
int iMode
|
||||
)
|
||||
{
|
||||
return W32kSetGraphicsMode(hdc, iMode);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
@ -59,7 +86,6 @@ GetBkMode(
|
|||
return W32kGetBkMode(a0);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue