Tagged Questions
12
votes
1answer
426 views
What is the fate of wchar_t in c++0x?
What is the fate of wchar_t in c++0x considering the new character types char8_t, char16_t, and char32_t?
More importantly, what about std::wstring, std::wcout, etc?
Are the w* family classes ...
4
votes
5answers
813 views
WideCharToMultiByte() vs. wcstombs()
What is the difference between WideCharToMultiByte() and wcstombs()
When to use which one?
2
votes
1answer
133 views
Converting string macros/constants to wide characters/Unicode
I have a Unicode Win32 application that uses 3rd party libraries, some of which provide constants for their version information as #defined (narrow) strings. For instance, libpng has the following:
...
1
vote
4answers
153 views
wchar_t* to char* conversion problems
I have a problem with wchar_t* to char* conversion.
I'm getting a wchar_t* string from the FILE_NOTIFY_INFORMATION structure, returned by the ReadDirectoryChangesW WinAPI function, so I assume that ...
1
vote
2answers
122 views
How to convert Wchar_t* to const char*
I am a kind of new for c++ , while working on the windows CE .net compact application
while trying to write hexa datas to a file
CString dataBlock1;
dataBlock1 = "";
CString temp;
for(int i = 0; ...
1
vote
1answer
97 views
Convert WCHAR to QString in Qt
Convert WCHAR to QString in Qt.
Please help me to implement it to complete this convertion.
1
vote
1answer
54 views
Setting the szTip field of the NOTIFYICONDATA structure
The szTip field is 128 characters long, and unicode. It is of type TCHAR, which is typedef'd as WCHAR. So i have no clue why the following code snippet will not compile.
nid.szTip = _T("ToolTip");
...
1
vote
2answers
240 views
Pass a function pointer from C++ to be called by C# - Arguments of functions include a wide char string (LPCWSTR)
I am writing a C# library to be used by native C++ application. I am using C++/CLI as the Interoperability mechanisim.
I require to pass a callback function from C++ to C# (using C++/CLI as the ...
1
vote
2answers
220 views
How can I copy a CHAR Variable to WCHAR Variable in C++
I want to convert a CHAR file to UNICODE file.
I read a file character by character in CHAR file type and then save this character in a CHAR Variable and then I want to copy this CHAR Variable to a ...
1
vote
3answers
395 views
array of wchar_t
I would like to have an array of wchar_t's.
The following works:
char** stringArray;
int maxWords = 3;
stringArray = new char*[maxWords];
stringArray[0] = "I";
stringArray[1] = " Love ";
...
1
vote
5answers
1k views
How to open a file with wchar_t* containing non-Ascii string in Linux?
Environment: Gcc/G++ Linux
I have a non-ascii file in file system and I'm going to open it.
Now I have a wchar_t*, but I don't know how to open it. (my trusted fopen only opens char* file)
Please ...
1
vote
3answers
480 views
Why is the following C++ code printing only the first character?
I am trying to convert a char string to a wchar string.
In more detail: I am trying to convert a char[] to a wchar[] first and then append " 1" to that string and the print it.
char src[256] = ...
1
vote
1answer
125 views
Cannot convert parameter from WCHAR[100] to WCHAR**
I have a method expecting WCHAR**, i need to get some data back from this method. I am declaring an array WCHAR[100] and passing it to the function. The compiler throws this error:
WCHAR result[100];
...
0
votes
3answers
90 views
How to concat an int to a wchar_t* in C++?
I have to create and write on N files, everyone must have an integer ending to identificate it.
This is my piece of code:
for(int i=0; i<MAX; i++)
{
uscita.open("nameFile"+i+".txt", ...
0
votes
2answers
227 views
WCHAR overflow when performing wcscpy_s
When trying to retrieve a massive folder path from an outlook mailbox (no 255 char max length in path) I seem not be be handling it correctly, yet i have tried everything on the code and nothing seems ...
0
votes
0answers
72 views
“wchar.h” gives syntax errors when imported in an .idl file (COM server)
I created a new C++ (ATL) project in my visual studio and set off on creating a nice little COM server dll. There is, of course an IDL file that defines interface outwards for the world to use. Since ...
0
votes
3answers
241 views
C++ , winapi Compare two WCHAR * strings
I want to campare to WCHAR * strings.
How to do it.
P.S.
I would like to ignore case while comparing.
I know you can use strcmpi but it id not working for WCHAR *.
Thanks for any help.
0
votes
3answers
113 views
Why do my Win32 API calls require the 'A' suffix and should I rectify that?
To execute a command from the Win shell I needed
ShellExecuteA(NULL, "open", "http://stackoverflow.com", NULL, NULL, SW_SHOWNORMAL);
and now I am working through Forgers Win32 Tutorial I am finding ...
0
votes
1answer
94 views
How do I properly port Win-only function GetMultiByteString?
I'm porting code originally Windows-only to cross-platform friendly code; one particular stumbling block is trying to convert calls to the Windows Unicode function "GetMultiByteString" (and any ...
0
votes
2answers
281 views
What is the easiest way to convert a char array to a WCHAR array?
In my code, I receive a const char array like the following:
const char * myString = someFunction();
Now I want to postprocess it as a wchar array since the functions I use afterwards don't handle ...
-1
votes
2answers
125 views
'strcpy' : cannot convert parameter 2 from 'WCHAR *' to 'const char *
Having some issues with strcpy...
Getting this error:
strcpy' : cannot convert parameter 2 from 'WCHAR *' to 'const char *
Here is the code...
char FunctionName[ 256 ];
UFunction *pUFunc ...