Where there is a dream ,there is hope

  C++博客 :: 首页 :: 联系 :: 聚合  :: 管理
  64 Posts :: 0 Stories :: 8 Comments :: 0 Trackbacks

常用链接

留言簿(1)

我参与的团队

搜索

  •  

最新评论

阅读排行榜

评论排行榜

总用到这个转化,记下来
wchar_t* atow(char* src)
{
    
int dest_len;
    dest_len 
= MultiByteToWideChar(CP_ACP,0,src,-1,NULL,0);
    wchar_t 
*dest = new wchar_t[dest_len];
    
if(dest == NULL)
        
return NULL;
    MultiByteToWideChar(CP_ACP,
0,src,-1,dest,dest_len);
    
return dest;
}
posted on 2011-02-28 12:05 IT菜鸟 阅读(370) 评论(0)  编辑 收藏 引用 所属分类: C/C++

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理