Possible Duplicate:
Display both of Korean and Chinese language in C++




我有使用VC ++ 6构建的游戏的源代码。问题是,当我尝试在消息框中显示中文消息(在游戏界面中显示自定义消息框)时,中文消息始终是破碎。

这是功能:

BOOL Message_Box(char * msg, int Button, void (*pProcOK)(), void (*pProcCancel)()){
  CMsgDlg dlg;
  int nCnt = 100;
  int nIndex = 0;
  do {
    nIndex = FindMsgDlg(nCnt);
    if(nIndex == -1)
      break;
    nCnt++;
  } while(true);
  dlg.SetDlg(g_hMainWnd, nCnt, Button, msg, pProcOK, pProcCancel);
  g_vtDlgList.push_back(nCnt);
  g_vtMsgBox.push_back(dlg);
  ShowDlg(dlg.GetIndex());
  return FALSE;
}


我打电话:

Message_Box("你没有足够的钱进入房间。", MB_OK);


这是在消息框上显示时的结果:

??有足?的??入房?

最佳答案

您应该使用unicode API来显示中文字符,也应该将它们存储在unicode中

08-03 22:03