SHLWAPI: stub implementations

Robert Shearman rob at codeweavers.com
Mon Jan 17 11:00:06 CST 2005


Hans Leidekker wrote:

> -Hans
>
>Changelog:
>  Stub implementations for PathUnExpandEnvStringsSHRegEnumUSValue{A,W},
>  SHRegCreateUSKey{A,W}, SHRegDeleteEmptyUSKey{A,W}, SHRegDeleteUSValue{A,W},
>  SHRegEnumUSValue{A,W}.
>  
>
>------------------------------------------------------------------------
>
>Index: dlls/shlwapi/path.c
>===================================================================
>RCS file: /home/wine/wine/dlls/shlwapi/path.c,v
>retrieving revision 1.48
>diff -u -r1.48 path.c
>--- dlls/shlwapi/path.c	5 Oct 2004 18:07:14 -0000	1.48
>+++ dlls/shlwapi/path.c	17 Jan 2005 16:36:09 -0000
>@@ -3911,6 +3911,24 @@
> }
> 
> /*************************************************************************
>+ * PathUnExpandEnvStringsA [SHLWAPI.@]
>+ */
>+BOOL WINAPI PathUnExpandEnvStringsA(LPCSTR pszPath, LPSTR pszBuf, UINT cchBuf)
>+{
>+    FIXME("(%s,%s,0x%08x)\n", debugstr_a(pszPath), debugstr_a(pszBuf), cchBuf);
>+    return FALSE;
>+}
>  
>

Can you add documentation for these and the other functions you've 
added? You'll probably notice that these are the only functions in the 
files that are now not documented.

Rob



More information about the wine-devel mailing list