From 7e255f1ac841f2078c572ff020f84b6027453083 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 27 Feb 2008 18:56:05 +0100 Subject: [PATCH] shlwapi: Added TRACEs to PathIsURL. --- dlls/shlwapi/url.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/shlwapi/url.c b/dlls/shlwapi/url.c index 87fbb25e8f..ba7cdb6ee9 100644 --- a/dlls/shlwapi/url.c +++ b/dlls/shlwapi/url.c @@ -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 */ -- 2.32.0.93.g670b81a890