Implemented Unpluged DC code

svn path=/trunk/; revision=5171
This commit is contained in:
James Tabor 2003-07-20 00:42:55 +00:00
parent 07ac6a5f63
commit a3be8dee2e
2 changed files with 28 additions and 31 deletions

View file

@ -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 * 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 * @unimplemented
*/ */
@ -1076,21 +1062,6 @@ SetMapperFlags(
} }
/*
* @unimplemented
*/
int
STDCALL
SetGraphicsMode(
HDC hdc,
int iMode
)
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/* /*
* @unimplemented * @unimplemented
*/ */

View file

@ -8,6 +8,33 @@
#include <win32k/kapi.h> #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 * @implemented
*/ */
@ -59,7 +86,6 @@ GetBkMode(
return W32kGetBkMode(a0); return W32kGetBkMode(a0);
} }
/* /*
* @implemented * @implemented
*/ */