projects
/
wine
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7a7e6d
)
shlwapi: Forward GetStringType3ExW to GetStringTypeW.
author
Dmitry Timoshkov
<dmitry@codeweavers.com>
Thu, 25 Oct 2007 05:11:26 +0000
(14:11 +0900)
committer
Alexandre Julliard
<julliard@winehq.org>
Thu, 25 Oct 2007 10:48:53 +0000
(12:48 +0200)
dlls/shlwapi/ordinal.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/shlwapi/ordinal.c
b/dlls/shlwapi/ordinal.c
index
643268a
..
c3f5371
100644
(file)
--- 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);
}
/*************************************************************************