winefile: Do not use wide character constants.

This commit is contained in:
Michael Stefaniuc 2007-06-27 22:48:29 +02:00 committed by Alexandre Julliard
parent e3708a60b4
commit 699df04e85
1 changed files with 7 additions and 7 deletions

View File

@ -33,18 +33,18 @@ void _wsplitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR*
if (drv) {
*drv++ = *path++;
*drv++ = *path++;
*drv = L'\0';
*drv = '\0';
}
} else if (drv)
*drv = L'\0';
*drv = '\0';
/* search for end of string or stream separator */
for(end=path; *end && *end!=L':'; )
for(end=path; *end && *end!=':'; )
end++;
/* search for begin of file extension */
for(p=end; p>path && *--p!=L'\\' && *p!=L'/'; )
if (*p == L'.') {
for(p=end; p>path && *--p!='\\' && *p!='/'; )
if (*p == '.') {
end = p;
break;
}
@ -64,14 +64,14 @@ void _wsplitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR*
for(s=p; s<end; )
*name++ = *s++;
*name = L'\0';
*name = '\0';
}
if (dir) {
for(s=path; s<p; )
*dir++ = *s++;
*dir = L'\0';
*dir = '\0';
}
}