Andrew Nguyen : gdi32: Stub the NamedEscape function.

Alexandre Julliard julliard at winehq.org
Tue Jan 27 09:08:19 CST 2009


Module: wine
Branch: master
Commit: e670b01f39b13ee49ca379331350a1bc6c3ea5da
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e670b01f39b13ee49ca379331350a1bc6c3ea5da

Author: Andrew Nguyen <arethusa26 at gmail.com>
Date:   Sun Jan 25 01:04:25 2009 -0600

gdi32: Stub the NamedEscape function.

---

 dlls/gdi32/driver.c   |   12 ++++++++++++
 dlls/gdi32/gdi32.spec |    2 +-
 2 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/dlls/gdi32/driver.c b/dlls/gdi32/driver.c
index 21342bb..101bad4 100644
--- a/dlls/gdi32/driver.c
+++ b/dlls/gdi32/driver.c
@@ -729,3 +729,15 @@ INT WINAPI DrawEscape(HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData)
     FIXME("DrawEscape, stub\n");
     return 0;
 }
+
+/*******************************************************************
+ *      NamedEscape [GDI32.@]
+ */
+INT WINAPI NamedEscape( HDC hdc, LPCWSTR pDriver, INT nEscape, INT cbInput, LPCSTR lpszInData,
+                        INT cbOutput, LPSTR lpszOutData )
+{
+    FIXME("(%p, %s, %d, %d, %p, %d, %p)\n",
+          hdc, wine_dbgstr_w(pDriver), nEscape, cbInput, lpszInData, cbOutput,
+          lpszOutData);
+    return 0;
+}
diff --git a/dlls/gdi32/gdi32.spec b/dlls/gdi32/gdi32.spec
index 99df6d1..36a8fb1 100644
--- a/dlls/gdi32/gdi32.spec
+++ b/dlls/gdi32/gdi32.spec
@@ -365,7 +365,7 @@
 # @ stub MirrorRgn
 @ stdcall ModifyWorldTransform(long ptr long)
 @ stdcall MoveToEx(long long long ptr)
-# @ stub NamedEscape
+@ stdcall NamedEscape(long wstr long long ptr long ptr)
 @ stdcall OffsetClipRgn(long long long)
 @ stdcall OffsetRgn(long long long)
 @ stdcall OffsetViewportOrgEx(long long long ptr)




More information about the wine-cvs mailing list