Tagged Questions
The wchar tag has no wiki summary.
12
votes
1answer
425 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
3answers
187 views
Print wchar to Linux console?
My C program is pasted below. In bash, the program print "char is ", Ω
is not printed. My locale are all en_US.utf8.
#include <stdio.h>
#include <wchar.h>
#include <stdlib.h>
int ...
4
votes
5answers
810 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:
...
2
votes
3answers
57 views
Is WCHAR in COM interfaces a good thing?
Is WCHAR in COM interfaces a good thing ?
I've been searching the internet for an answer to this question with no results.
Basically should char* / wchar* be used in COM or should i use BSTR instead ...
1
vote
4answers
150 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
96 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
2answers
169 views
wprintf UTF16 (should be UTF8) on Linux?
1 It's really strange that wprintf show 'Ω' as 3A9 (UTF16), but wctomb convert
wchar to CEA9 (UTF8), my locale is default en_US.utf8. As man-pages said,
they should comform to my locale, but wpritnf ...
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
73 views
Data Structure to use instead of hash_map
I want to make an array containing three wide character arrays such that one of them is the key.
"LPWCH,LPWCH,LPWCH" was not able to use the greater than/lesser than symbols since it thinks it is a ...
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
394 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
479 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
4answers
283 views
How do I convert a WCHAR * to a regular string?
So in Win32 API, I have my main function defined thus:
wmain(int argc, WCHAR* argv[])
I'm passing some arguments to it, and I'd like to execute a switch case based on the value of the argument, ...
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];
...
1
vote
1answer
533 views
Display WCHAR Strings in Xcode Debugger
I'd like to preview WCHAR strings in the variable display of the Xcode 3.2 debugger.
Bascially if I have
WCHAR wtext[128];
wcscpy(wtext, L"Hello World");
I'd like to see "Hello World" for wtext ...
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
3answers
59 views
Reading string from C# managed code to C++ wchar* [] getting AccessViolation
The question is easy, Want to read a string from managed C# code to my unmanaged C++ code in WCHAR* [].
The C function is:
extern "C" __declspec(dllexport) int __cdecl myfunc(int argc, WCHAR* ...
0
votes
1answer
49 views
wchar_t reading
I have a mistake in the function for reading the file but I don't know what is wrong. all the symbols are read correctly when the symbol is beyond the ASCII table.
while ((c = fgetwc(file)) != WEOF) ...
0
votes
2answers
43 views
Win32 strange widechar behavior
I haven't used wide chars before. Here's the code from someone else:
char moduleFileName[512];
int size = ::GetModuleFileName(NULL,moduleFileName,sizeof(moduleFileName));
char c_drive[256];
char ...
0
votes
2answers
226 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
239 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
0answers
205 views
how to make wchar_t support for android?
wchar.h is declared and defined in wchar.c in android and unicode flags are enabled but its still doesn't support.I am unable to print 16bit characters using %ls.
can anyone make it print using %ls?
...
0
votes
2answers
133 views
OCI,OCILIB,ODBC wide character(wchar) support
Which of these libraries OCI,OCILIB,ODBC or any other support wide character strings (wchar) ?
Thanks in advance
Athreya
0
votes
1answer
90 views
C++ Read/Write characters bigger than ~50,000
I've got a program that basically writes characters like this
wchar_t c[5] = {static_cast<wchar_t>(x1), static_cast<wchar_t>(x2), static_cast<wchar_t>(x3), ...
0
votes
3answers
2k views
Convert char* to wchar* in C
I would like to convert a char* string to a wchar* string in C.
I have found many answers, but most of them are for C++. Could you help me?
Thanks.
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 ...
0
votes
1answer
855 views
How to convert 'const wchar*' to 'const char*' on Mac OS X?
Is there a elegant way to convert 'const wchar *' to 'const char *' on Mac OS X?
Kat
-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 ...