mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
put GetObjectW back in stubsw.c until Jim's ready for it
svn path=/trunk/; revision=5204
This commit is contained in:
parent
ca2708a0f7
commit
d0202ddfa2
1 changed files with 27 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: stubsw.c,v 1.12 2003/07/21 02:36:00 royce Exp $
|
||||
/* $Id: stubsw.c,v 1.13 2003/07/21 04:10:41 royce Exp $
|
||||
*
|
||||
* reactos/lib/gdi32/misc/stubs.c
|
||||
*
|
||||
|
@ -15,7 +15,7 @@
|
|||
#include <win32k/kapi.h>
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
|
@ -51,19 +51,21 @@ CopyMetaFileW(
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
HDC
|
||||
STDCALL
|
||||
CreateICW(
|
||||
LPCWSTR a0,
|
||||
LPCWSTR a1,
|
||||
LPCWSTR a2,
|
||||
CONST DEVMODEW * a3
|
||||
LPCWSTR lpszDriver,
|
||||
LPCWSTR lpszDevice,
|
||||
LPCWSTR lpszOutput,
|
||||
CONST DEVMODEW * lpdvmInit
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
return W32kCreateIC ( lpszDriver,
|
||||
lpszDevice,
|
||||
lpszOutput,
|
||||
(CONST PDEVMODEW)lpdvmInit );
|
||||
}
|
||||
|
||||
|
||||
|
@ -448,6 +450,22 @@ StartDocW(
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
GetObjectW(
|
||||
HGDIOBJ a0,
|
||||
int a1,
|
||||
LPVOID a2
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue