Stub for PathQualify32[A|W].

This commit is contained in:
Juergen Schmied 1999-01-31 10:00:26 +00:00 committed by Alexandre Julliard
parent 1c24d79b18
commit e4b41afa4a
3 changed files with 24 additions and 1 deletions

View File

@ -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]
*/

View File

@ -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)

View File

@ -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