pengxuan 发表于 2009-9-15 17:21:00

请教关于acutPrintf()的 问题

请教关于acutPrintf()的 问题
static void BASIChello(void)
{
// Add your code for command BASIC.hello here
acutPrintf("hello,world!");
}
.............................
错误显示:
1>e:\my prog\arxproject1\arxproject1\acrxentrypoint.cpp(69) : error C2664: 'acutPrintf' : cannot convert parameter 1 from 'const char ' to 'const ACHAR *'

wj_job 发表于 2009-9-15 20:07:00

function XML() {
   
}

th_gsb 发表于 2009-9-16 10:09:00

unicode

梦幻神话 发表于 2009-9-18 10:06:00

VS2005以上(unicode)
acutPrintf(_T("hello,world!"));

netthree 发表于 2009-9-25 08:12:00

直接使用acutPrintf(L"hello,world!");

pengxuan 发表于 2009-9-25 09:00:00

谢谢各位!
页: [1]
查看完整版本: 请教关于acutPrintf()的 问题