Austin English austinenglish@gmail.com writes:
-static const char *debugstr_wn(const WCHAR *wstr, int n) +static const char *debugstr_wn(const WCHAR *wstr, uint n) { static char buf[80]; char *p;
- int i;
- uint i;
uint is not a standard type. Use "unsigned int" instead.