Hi, My C++ program (VS2005) has two parts. one part writes into a file and the other part reads from it. The folder name is japanese. eg: C:\Documents and Settings\管理者 To read the file in this location,I am supposed to use an API (third party library) which takes the file location as a char*. I have the file location(C:\Documents and Settings\管理者) in a CString. How do I convert this into a char* ? I tried using the T2A macros, but the japanese string is not getting extracted. the char* pointer shows some junk charaters. Any inputs on this ? Thanks in advance.
U
user3034
@user3034
Posts
-
Unicode Strings -
What type of Project is this ?Hello All, I have the source code of a dll and i am supposed to re-write it. This dll uses COM. (It has COM Interfaces and will invoke a COM exe as well). Now, looking at the source code, how can i figure out the project settings with which it was created ? These are some of the details which i want, * Is it a ATL COM AppWizard or MFC AppWizard dll. * If ATL COM AppWizard, is it been developed with MFC Support or not ? * If MFC AppWizard dll, is it a Regular Dll with MFC Statically Linked or Regular Dll using shared MFC dll or MFC Extension Dll ? How do i get these information from the source code ? Thanks