diff --git a/reactos/dll/win32/shell32/shell32.spec b/reactos/dll/win32/shell32/shell32.spec index b411709e274..1b11415c113 100644 --- a/reactos/dll/win32/shell32/shell32.spec +++ b/reactos/dll/win32/shell32/shell32.spec @@ -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) diff --git a/reactos/dll/win32/shell32/stubs.c b/reactos/dll/win32/shell32/stubs.c index 0de14939dda..56ec9133d76 100644 --- a/reactos/dll/win32/shell32/stubs.c +++ b/reactos/dll/win32/shell32/stubs.c @@ -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; -}