shlwapi

Ulrich Czekalla ulrich.czekalla at utoronto.ca
Fri Mar 26 15:59:53 CST 2004


ChangeLog:
	Ulrich Czekalla <ulrich at codeweavers.com>
	Implement FixSlashesAndColonW and add stub for SHGetAppCompatFlags
-------------- next part --------------
Index: ordinal.c
===================================================================
RCS file: /home/wine/wine/dlls/shlwapi/ordinal.c,v
retrieving revision 1.82
diff -u -w -r1.82 ordinal.c
--- ordinal.c	23 Mar 2004 23:20:16 -0000	1.82
+++ ordinal.c	26 Mar 2004 21:57:03 -0000
@@ -3837,6 +3837,31 @@
     return GetMenuPosFromID(hMenu, uID);
 }
 
+
+/*************************************************************************
+ *      @	[SHLWAPI.448]
+ */
+VOID WINAPI FixSlashesAndColonW(LPWSTR lpwstr)
+{
+    while (*lpwstr)
+    {
+        if (*lpwstr == '/')
+            *lpwstr = '\\';
+        lpwstr++;
+    }
+}
+
+
+/*************************************************************************
+ *      @	[SHLWAPI.461]
+ */
+DWORD WINAPI SHGetAppCompatFlags()
+{
+  FIXME("stub\n");
+  return 0;
+}
+
+
 /*************************************************************************
  *      @	[SHLWAPI.549]
  */
Index: shlwapi.spec
===================================================================
RCS file: /home/wine/wine/dlls/shlwapi/shlwapi.spec,v
retrieving revision 1.89
diff -u -w -r1.89 shlwapi.spec
--- shlwapi.spec	18 Mar 2004 02:11:23 -0000	1.89
+++ shlwapi.spec	26 Mar 2004 21:57:03 -0000
@@ -445,7 +445,7 @@
 445 stdcall -noname PathFileExistsAndAttributesA(str ptr)
 446 stdcall -noname PathFileExistsAndAttributesW(wstr ptr)
 447 stub -noname FixSlashesAndColonA
-448 stub -noname FixSlashesAndColonW
+448 stdcall -noname FixSlashesAndColonW(wstr)
 449 stub -noname NextPathA
 450 stub -noname NextPathW
 451 stub -noname CharUpperNoDBCSA
@@ -458,7 +458,7 @@
 458 stub -noname GetLongPathNameWrapA
 459 stub -noname SHExpandEnvironmentStringsA
 460 stub -noname SHExpandEnvironmentStringsW
-461 stub -noname SHGetAppCompatFlags
+461 stdcall -noname SHGetAppCompatFlags()
 462 stub -noname UrlFixupW
 463 stub -noname SHExpandEnvironmentStringsForUserA
 464 stub -noname SHExpandEnvironmentStringsForUserW


More information about the wine-patches mailing list