shlwapi: Added TRACEs to PathIsURL.

This commit is contained in:
Jacek Caban 2008-02-27 18:56:05 +01:00 committed by Alexandre Julliard
parent a1f3af39b3
commit 7e255f1ac8
1 changed files with 4 additions and 0 deletions

View File

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