I am recieving some data in UTF8 format and have to pas it to another function in const unsigned short format. any ideas??
This is a discussion on Data conversion within the C++ Programming forums, part of the General Programming Boards category; I am recieving some data in UTF8 format and have to pas it to another function in const unsigned short ...
I am recieving some data in UTF8 format and have to pas it to another function in const unsigned short format. any ideas??
use UNICODE conversion functions -- such as wcstombs()
thanks a lot...Got it...