이전 코드를 VS 2010으로 변환하려고합니다. 변환하려고하는 코드는 아래에 나와 있습니다. 함수 addCommand는 다음과 같이 정의됩니다.char to ACHAR + objectARX
addCommand(const ACHAR * cmdGroupName, const ACHAR * cmdGlobalName, const ACHAR * cmdLocalName, Adesk::Int32 commandFlags, AcRxFunctionPtr FunctionAddr,AcEdUIContext *UIContext=NULL, int fcode=-1, HINSTANCE hResourceHandle=NULL, AcEdCommand** cmdPtrRet=NULL)
세 번째 필수 인수는 ACHAR 유형입니다. 이 함수는 다음과 같은 방식으로 호출됩니다.
char cmdLocRes[65];
// If idLocal is not -1, it's treated as an ID for
// a string stored in the resources.
if (idLocal != -1) {
// Load strings from the string table and register the command.
::LoadString(_hdllInstance, idLocal, cmdLocRes, 64);
acedRegCmds->addCommand(cmdGroup, cmdInt, cmdLocRes, cmdFlags, cmdProc);
내 문제는 변수 cmdLocRes는 char 유형이지만 인수는 ACHAR 유형이어야한다는 것입니다.
어떻게 변환 할 수 있습니까?