shlwapi: Added TRACEs to PathIsURL.
This commit is contained in:
parent
a1f3af39b3
commit
7e255f1ac8
|
@ -2155,6 +2155,8 @@ BOOL WINAPI PathIsURLA(LPCSTR lpstrPath)
|
|||
PARSEDURLA base;
|
||||
DWORD res1;
|
||||
|
||||
TRACE("%s\n", debugstr_a(lpstrPath));
|
||||
|
||||
if (!lpstrPath || !*lpstrPath) return FALSE;
|
||||
|
||||
/* get protocol */
|
||||
|
@ -2173,6 +2175,8 @@ BOOL WINAPI PathIsURLW(LPCWSTR lpstrPath)
|
|||
PARSEDURLW base;
|
||||
DWORD res1;
|
||||
|
||||
TRACE("%s\n", debugstr_w(lpstrPath));
|
||||
|
||||
if (!lpstrPath || !*lpstrPath) return FALSE;
|
||||
|
||||
/* get protocol */
|
||||
|
|
Loading…
Reference in New Issue