Dmitry Timoshkov : shlwapi: Forward GetStringType3ExW to GetStringTypeW.

Alexandre Julliard julliard at winehq.org
Thu Oct 25 08:38:45 CDT 2007


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

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Thu Oct 25 14:11:26 2007 +0900

shlwapi: Forward GetStringType3ExW to GetStringTypeW.

---

 dlls/shlwapi/ordinal.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dlls/shlwapi/ordinal.c b/dlls/shlwapi/ordinal.c
index 643268a..c3f5371 100644
--- a/dlls/shlwapi/ordinal.c
+++ b/dlls/shlwapi/ordinal.c
@@ -732,10 +732,9 @@ BOOL WINAPI IsCharXDigitW(WCHAR wc)
  *      @	[SHLWAPI.35]
  *
  */
-BOOL WINAPI GetStringType3ExW(LPWSTR lpszStr, DWORD dwLen, LPVOID p3)
+BOOL WINAPI GetStringType3ExW(LPWSTR src, INT count, LPWORD type)
 {
-    FIXME("(%s,0x%08x,%p): stub\n", debugstr_w(lpszStr), dwLen, p3);
-    return TRUE;
+    return GetStringTypeW(CT_CTYPE3, src, count, type);
 }
 
 /*************************************************************************




More information about the wine-cvs mailing list