put GetObjectW back in stubsw.c until Jim's ready for it
authorRoyce Mitchell III <royce3@ev1.net>
Mon, 21 Jul 2003 04:10:41 +0000 (04:10 +0000)
committerRoyce Mitchell III <royce3@ev1.net>
Mon, 21 Jul 2003 04:10:41 +0000 (04:10 +0000)
svn path=/trunk/; revision=5204

reactos/lib/gdi32/misc/stubsw.c

index 550912a..72eb346 100644 (file)
@@ -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
  */