19 Dec
2003
19 Dec
'03
2:52 a.m.
"Flameeyes" <dgp85(a)users.sourceforge.net> wrote:
The attached patches fixes some functions of shlwapi I needed to run an application I wrote with BCB that was using MS XML Parser. I'm using it and works well AFAIK.
@@ -2346,6 +2376,9 @@ } StrCpyW(pszPointer, pszPath); StrCpyW(pszUrl, pszNewUrl); + + LPWSTR slash; + while((slash = StrChrW(pszUrl, '\\'))) *slash = '/'; return S_OK; }
Your patch will not compile with older C compilers. You need to put variables on the top of the function body. Please resend. -- Dmitry.
8034
Age (days ago)
8034
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov