More use of rc files for strings and menus, fixes. First internal
icons.
diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c
index 75898d0..54b70a9 100644
--- a/dlls/shell32/shellpath.c
+++ b/dlls/shell32/shellpath.c
@@ -718,6 +718,29 @@
}
/*************************************************************************
+ * PathCleanupSpec [SHELL32.171]
+ *
+ */
+DWORD WINAPI PathCleanupSpecA(LPSTR x, LPSTR y)
+{
+ FIXME("%p(%s) %p(%s) stub\n",x,x,y,y);
+ return TRUE;
+}
+
+DWORD WINAPI PathCleanupSpecW(LPWSTR x, LPWSTR y)
+{
+ FIXME("%p(%s) %p(%s) stub\n",x,debugstr_w(x),y,debugstr_w(y));
+ return TRUE;
+}
+
+DWORD WINAPI PathCleanupSpecAW (LPVOID x, LPVOID y)
+{
+ if (VERSION_OsIsUnicode())
+ return PathCleanupSpecW(x,y);
+ return PathCleanupSpecA(x,y);
+}
+
+/*************************************************************************
* SheGetDirW [SHELL32.281]
*
*/