- Implement PathIsURL

svn path=/trunk/; revision=39496
This commit is contained in:
Dmitry Chapyshev 2009-02-08 18:49:18 +00:00
parent 46ab93a1a3
commit 567bd56992
2 changed files with 1 additions and 12 deletions

View file

@ -249,7 +249,7 @@
249 stdcall -noname PathParseIconLocation(wstr) PathParseIconLocationW
250 stdcall -noname PathRemoveExtension(wstr) PathRemoveExtensionW
251 stdcall -noname PathRemoveArgs(wstr) PathRemoveArgsW
252 stdcall -noname PathIsURL(wstr) shell32.PathIsURL # Fixme
252 stdcall -noname PathIsURL(wstr) shlwapi.PathIsURLW
253 stub -noname SHIsCurrentProcessConsoleSession
254 stub -noname DisconnectWindowsDialog
255 stdcall Options_RunDLLA(ptr ptr str long)

View file

@ -1406,14 +1406,3 @@ SHGetUserSessionId(HANDLE hHandle)
FIXME("SHGetUserSessionId() stub\n");
return NULL;
}
/*
* Unimplemented
*/
BOOL
WINAPI
PathIsURL(LPCWSTR pszPath)
{
FIXME("PathIsURL() stub\n");
return FALSE;
}