{
boolok = true;
LPCTSTRb = lpCmdLine;
LPCTSTRp = b;
while(*b) {
// remove leading spacewhile(_istspace((unsigned)*b))
++b;
p = b;
boolquote = false;
// options are separated by ','for(; *p; ++p) {
if (*p == '"') // Quote characters may appear at any position in the command line.
quote = !quote;
elseif (*p==',' && !quote)
break;
}
if (p > b) {
intl = p - b;
// remove trailing spacewhile(l>0 && _istspace((unsigned)b[l-1]))
--l;
if (!EvaluateOption(String(b, l)))
ok = false;
if (*p)
++p;
b = p;
}
}
returnok;
}
Generated on Sun May 27 2012 06:19:51 for ReactOS by
1.7.6.1
ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.