Re:Add support to arguments with dash in taskkill
Jan. 22, 2014
11:30 p.m.
if (*argdata != '/' && *argdata != '-') argdata is wchar type,so you should do as if (*argdata != L'/' && *argdata != L'-')
January 2014
12:16 a.m.
New subject: Add support to arguments with dash in taskkill
Akira Nakagawa <matyapiro31(a)gmail.com> wrote:
if (*argdata != '/' && *argdata != '-') argdata is wchar type,so you should do as if (*argdata != L'/' && *argdata != L'-')
Not really, ASCII set (0 - 0x7f) is replicated in unicode. -- Dmitry.
4493
Age (days ago)
4493
Last active (days ago)
1 comments
2 participants
participants (2)
-
Akira Nakagawa -
Dmitry Timoshkov