Skip to content
Snippets Groups Projects
Commit e4b41afa authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard
Browse files

Stub for PathQualify32[A|W].

parent 1c24d79b
No related branches found
No related tags found
No related merge requests found
......@@ -516,6 +516,24 @@ BOOL32 WINAPI PathSetDlgItemPath32AW(HWND32 hDlg, int id, LPCVOID pszPath)
return PathSetDlgItemPath32A(hDlg, id, pszPath);
}
/*************************************************************************
* PathQualify32AW [SHELL32.49]
*/
BOOL32 WINAPI PathQualify32A(LPCSTR pszPath)
{ TRACE(shell,"%s\n",pszPath);
return 0;
}
BOOL32 WINAPI PathQualify32W(LPCWSTR pszPath)
{ TRACE(shell,"%s\n",debugstr_w(pszPath));
return 0;
}
BOOL32 WINAPI PathQualify32AW(LPCVOID pszPath)
{ if (VERSION_OsIsUnicode())
return PathQualify32W(pszPath);
return PathQualify32A(pszPath);
}
/*************************************************************************
* PathResolve [SHELL32.51]
*/
......
......@@ -254,6 +254,11 @@ LPWSTR WINAPI PathAddBackslash32W(LPWSTR path);
#define PathAddBackslash WINELIB_NAME_AW(PathAddBackslash)
LPVOID WINAPI PathAddBackslash32AW(LPVOID path);
BOOL32 WINAPI PathQualify32A(LPCSTR path);
BOOL32 WINAPI PathQualify32W(LPCWSTR path);
#define PathQualify WINELIB_NAME_AW(PathQualify)
BOOL32 WINAPI PathQualify32AW(LPCVOID path);
LPSTR WINAPI PathQuoteSpaces32A(LPCSTR path);
LPWSTR WINAPI PathQuoteSpaces32W(LPCWSTR path);
#define PathQuoteSpaces WINELIB_NAME_AW(PathQuoteSpaces)
......
......@@ -54,7 +54,7 @@ init Shell32LibMain
46 stdcall PathMatchSpec (str str) PathMatchSpec32AW
47 stub PathMakeUniqueName@20
48 stdcall PathSetDlgItemPath (long long ptr) PathSetDlgItemPath32AW
49 stub PathQualify@4
49 stdcall PathQualify (ptr) PathQualify32AW
50 stub PathStripToRoot@4
51 stdcall PathResolve(str long long) PathResolve
52 stdcall PathGetArgs(str) PathGetArgs32AW
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment