- New (some stubs): SHGetFolderLocation, PathAddExtension,
PathIsUNCServer, PathIsUNCServerShare, PathMakePretty,
SHCreateShellPalette, SHOpenRegStream, SHOpenRegStream2
- Many string functions implemented
- Some stubs for exports by ordinal
diff --git a/include/shlwapi.h b/include/shlwapi.h
index 36ffdf6..62a0eae 100644
--- a/include/shlwapi.h
+++ b/include/shlwapi.h
@@ -29,6 +29,14 @@
BOOL WINAPI PathIsURLW(LPCWSTR pszPath);
#define PathIsURL WINELIB_NAME_AW(PathIsURL)
+BOOL WINAPI PathAddExtensionA(LPSTR pszPath, LPCSTR pszExt);
+BOOL WINAPI PathAddExtensionW(LPWSTR pszPath, LPCWSTR pszExt);
+#define PathAddExtension WINELIB_NAME_AW(PathAddExtension)
+
+BOOL WINAPI PathStripToRootA(LPSTR pszPath);
+BOOL WINAPI PathStripToRootW(LPWSTR pszPath);
+#define PathStripToRoot WINELIB_NAME_AW(PathStripToRoot)
+
#ifdef __cplusplus
} /* extern "C" */
#endif /* defined(__cplusplus) */