outtextxy函数只能使用多字节编码,wchar_t s只能使用Unicode编码,怎么中和啊?
wchar_t ws[]=L"汉字"; char s[5]; sprintf(s,"%S",ws);//将ws转为s