高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】string Conversion Using Code Page
string conversion using code page
string conversion using code page
in the hope of converting a string in a windows dwg file from codepage ansi_1252 (the one in the dwg file) into a macintosh compatible string i do this:
void importer:xfread_convertstringwindowtomac(char * psz)
{
unsigned char * p;
wchar_t newchar, thecar;
odresult res;
p= (unsigned char *)psz;
while(*p!=0)
{
thecar= (wchar_t) *p;
res= odcharmapper::codepagetounicode(thecar,(odcodepage id) pdb->getdwgcodepage(), newchar);
res= odcharmapper::unicodetocodepage(newchar, cp_macintosh, thecar);
*p++= newchar;
}
}
the first res is always eok, but the second is always ecodepagenotfound
and no conversion occurs. odcharmapper has been correctly initialized using adinit.dat.
should the above code work or am i doing something wrong ?
thanks for any help..
|