mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 18:56:48 +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
|
* reactos/lib/gdi32/misc/stubs.c
|
||||||
*
|
*
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
#include <win32k/kapi.h>
|
#include <win32k/kapi.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
STDCALL
|
STDCALL
|
||||||
|
@ -51,19 +51,21 @@ CopyMetaFileW(
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
HDC
|
HDC
|
||||||
STDCALL
|
STDCALL
|
||||||
CreateICW(
|
CreateICW(
|
||||||
LPCWSTR a0,
|
LPCWSTR lpszDriver,
|
||||||
LPCWSTR a1,
|
LPCWSTR lpszDevice,
|
||||||
LPCWSTR a2,
|
LPCWSTR lpszOutput,
|
||||||
CONST DEVMODEW * a3
|
CONST DEVMODEW * lpdvmInit
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
return W32kCreateIC ( lpszDriver,
|
||||||
return 0;
|
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
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue