Author: dchapyshev
Date: Sun Feb 8 12:49:18 2009
New Revision: 39496
URL:
http://svn.reactos.org/svn/reactos?rev=39496&view=rev
Log:
- Implement PathIsURL
Modified:
trunk/reactos/dll/win32/shell32/shell32.spec
trunk/reactos/dll/win32/shell32/stubs.c
Modified: trunk/reactos/dll/win32/shell32/shell32.spec
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shell32.…
==============================================================================
--- trunk/reactos/dll/win32/shell32/shell32.spec [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/shell32.spec [iso-8859-1] Sun Feb 8 12:49:18 2009
@@ -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)
Modified: trunk/reactos/dll/win32/shell32/stubs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/stubs.c?…
==============================================================================
--- trunk/reactos/dll/win32/shell32/stubs.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/stubs.c [iso-8859-1] Sun Feb 8 12:49:18 2009
@@ -1406,14 +1406,3 @@
FIXME("SHGetUserSessionId() stub\n");
return NULL;
}
-
-/*
- * Unimplemented
- */
-BOOL
-WINAPI
-PathIsURL(LPCWSTR pszPath)
-{
- FIXME("PathIsURL() stub\n");
- return FALSE;
-}