Hi Austin,
Austin English wrote:
Please apply after the first dxdiag patch (unicode-ify). Based on a patch by Dan Kegel.
case 'w': + opt_given = TRUE; + while (isalpha(*s) || *s == ':') +
You can't use isalpha on WCHAR. Use isalphaW instead.
Jacek
On Wed, Aug 26, 2009 at 3:26 PM, Jacek Cabanjacek@codeweavers.com wrote:
Hi Austin,
Austin English wrote:
Please apply after the first dxdiag patch (unicode-ify). Based on a patch by Dan Kegel.
case 'w':
- opt_given = TRUE;
- while (isalpha(*s) || *s == ':') +
You can't use isalpha on WCHAR. Use isalphaW instead.
Thanks for reviewing. Will resend.