Tagged Questions
0
votes
1answer
42 views
compiling BUTT with mingw64 cannot convert 'char*' to ' LPWSTR {aka wchar_t*}' in assignment
I'm trying to compile BUTT (http://butt.sourceforge.net/) on windows with MingwW64. I seem to be running into errors of the type error: cannot convert 'char*' to 'LPCWSTR {aka const wchar_t*}' the ...
0
votes
2answers
99 views
Why FindFirstFileW always return -1?
FindFirstFileA (ANSI) works as it should, while FindFirstFileW (Unicode) not.
The Wide version always return -1 (INVALID_HANDLE_VALUE), but why?
'Declarations:
Option Explicit
Private Const ...
2
votes
1answer
116 views
Storing and retrieving UTF-8 strings from Windows resource (RC) files
I created an RC file which contains a string table, I would like to use some special
characters: ö ü ó ú ő ű á é. so I save the string with UTF-8 encoding.
But when I call in my cpp file, something ...
1
vote
1answer
232 views
_tprintf with Unicode characters in a console app
I'm doing this simple output from a Unicode-built console application (using C++ and Visual Studio 2008). This code is intended to run on Windows:
_tprintf(L"Some sample string\n");
Everything ...
0
votes
1answer
239 views
Win32 textbox control alt keypress message
I need to hookup alt+alphanumberic keypress inside a child window control.
I have written this program to test it's functionality. But it seems it does not response to keystrokes
like ALT+X , ALT+X ...
1
vote
0answers
152 views
Encoding unicode characters in URL using Win32
I am developing a Windows based application in which I need to pass unicode characters as part of the URL. I read that I need to percent encode them inorder to do so. According to my understanding ...
0
votes
0answers
43 views
WinAPI Japanese LoadString not correct
I'm writing a Windows program using the WinAPI and c++. I can't get the LoadString() function to correctly pull and display the data.
I'm using MinGW with both -D UNICODE and -D _UNICODE.
Main.cpp
...
0
votes
2answers
55 views
C++ Unicode Issue
I'm having a bit of trouble with handling unicode conversions.
The following code outputs this into my text file.
HELLO??O
std::string test = "HELLO";
std::string output;
int len = ...
0
votes
2answers
42 views
Convering one symbol to MBCS from Unicode, where it present only in Unicode not in Code Page [closed]
My application was build based on MBCS but I have one currency symbol present in unicode but not in the relevant code page. I need to display the same currency symbol in my application, so is there ...
0
votes
0answers
63 views
Any way to implement a font-family list in GDI or GDI+ or other method in WIN32
In CSS or WPF, we usually define a font family list like this.
font-family: Verdana, "Microsoft Yahei", sans-serif;
When a CHAR can't display with the first font, It will use the second font...
But ...
0
votes
1answer
81 views
failed string/values from registry enum call
Hello and thanks in advance.
my problem today is i'm getting back "garbage" for the strings for a registry key value name, and value data. this appears to be a problem on all registry values within a ...
1
vote
2answers
122 views
Find length of std::wstring [closed]
How can I determine the length(number of characters) in a std::wstring?
Using myStr.length() gives the byte size(I think) but its not the number of characters. Do I need to create my own function to ...
0
votes
4answers
194 views
Printing unicode character in C
I got some local language font installed in my system (windows 8 OS). Through character map tool in windows, i got to know the unicode for those characters for that particular font.
All i wanted to ...
0
votes
1answer
73 views
Conversion from LPTSTR to tstring causes runtime error
I am attempting to convert a LPTSTR variable to tstring(ie, wstring in a unicode application and string in ANSI).
How do I perform this conversion?
My code attempts to perform the conversion but it ...
3
votes
2answers
136 views
Converting variables in Unicode
I'm a Javascript developer, so go easy on me! I am trying to write just a patch of C++ to enable printing on a framework. I'm compiling with Unicode, and based on my research, that is what is messing ...
4
votes
3answers
164 views
Output unicode symbol π and ≈ in c++ win32 console application
I am fairly new to programming, but it seems like the π(pi) symbol is not in the standard set of outputs that ASCII handles.
I am wondering if there is a way to get the console to output the π ...
1
vote
2answers
172 views
What are the disadvantages to not using Unicode in Windows?
What are the disadvantages to not using Unicode on Windows?
By Unicode, I mean WCHAR and the wide API functions. (CreateWindowW, MessageBoxW, and so on)
What problems could I run into by not using ...
3
votes
1answer
125 views
Strange characters instead national letters using Unicode in WinAPI
My program reads text from a file and puts it in combo box.
When the file contains text with english characters everything works fine.
When it contains some polish letters, they are replacing with ...
0
votes
1answer
300 views
What unicode encoding (UTF-8, UTF-16, other) does Windows use for its Unicode data types?
There are different encodings of the same Unicode (standardized) table. For example for UTF-8 encoding A corresponds to 0x0041 but for UTF-16 encoding the same A is represented as 0xfeff0041.
From ...
0
votes
1answer
37 views
Wrong encoding of “file name from a file handle” [closed]
I have used this code in msdn (Obtaining a file name from a file handle) to obtain the file name of a file handle that i got from findfirstchangenotification.
But now the problem is that the encoding ...
0
votes
1answer
180 views
FILE_NOTIFY_INFORMATION doesn't support Utf-8 file name
I am trying to watch a folder changes and notify the added filename so here is my code
bool FileWatcher::NotifyChange()
{
// Read the asynchronous result of the previous call to ReadDirectory
...
0
votes
3answers
234 views
winapinameA vs winapinameW - Unicode vs Ansi - Delphi XE2
I am using Delphi XE2 and importing SHGetFolderPath from Shell32.dll. I am running windows vista x64. When running SHGetFolderPathA The result is unclear.
I.E.:
uses
Windows;
function ...
0
votes
1answer
219 views
Simple reading file using ReadFile()
Why this code doesn't output anything(exept info word)? File is exist.
hReadFile = CreateFile(L"indexing.xml",GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ |FILE_SHARE_WRITE, NULL, OPEN_EXISTING, ...
0
votes
3answers
391 views
MultiByteToWideChar terminating output buffer with junk, but reporting no error. Why?
While developing a program the other day, I had to convert an ASCII string into a Unicode string. I'm working on Windows with Visual Studio 2012, by the way. I noticed some strange behaviour with the ...
1
vote
2answers
208 views
How does one manipulate Unicode strings at the character level?
Sometimes manipulating character strings at the character level is unavoidable.
Here I have a function written for ANSI/ASCII based character strings that replaces CR/LF sequences with LF only, and ...
1
vote
1answer
217 views
How do I open a file named 𤭢.txt with CreateFile() API function?
Code points of some Unicode characters (like 𤭢) consume more than 2-bytes. How do I use Win32 API functions like CreateFile() with these characters?
WinBase.h
WINBASEAPI
__out
HANDLE
WINAPI
...
2
votes
2answers
67 views
should the device name be narrow or wide for WM_DEVMODECHANGE?
I notice there is no A/W variations for WM_DEVMODECHANGE, yet it takes a string in the LPARAM. I see no documentation (that I can find) that tells whether this string is narrow or wide.
Does anyone ...
-1
votes
1answer
149 views
SHELLEXECUTEINFO UNICODE support?
I used ShellExecuteEx() to call an executable file. And the following are the parameters I set for SHELLEXECUTEINFO structure.
SHELLEXECUTEINFO ShExecInfo = {0};
ShExecInfo.cbSize = ...
0
votes
1answer
248 views
MultiByteToWideChar converts (°) degree symbol to � [closed]
I am trying to convert a string from ANSII to Wide char. I am using CA2W(string,CP_UTF8) which internally uses MultiByteToWideChar.
While debugging it shows that MultiByteToWideChar converts ° ...
2
votes
2answers
245 views
How to test my application is UNICODE Compatible or not?
I apologise if it is a silly question..I recently developed an application in windows with C and WinApi. I am in need to check whether application is UNICODE compatible or not. How can I test my ...
0
votes
2answers
144 views
prepend the “\\?\” string to the path - DriverPackageUninstall
I used DriverPackageUninstall, to uninstall my driver. For this API I need to give "Inf Path" as the input. And I need to give this path as UNICODE string. To do this, I took the following statement ...
2
votes
1answer
105 views
Is MultiByteToWideChar reentrant or threadsafe?
Multiple threads in my application will be calling MultiByteToWideChar for converting UTF-8 to wchar_t strings.
I've been unable to find any documentation which states whether this function is ...
2
votes
3answers
333 views
WinAPI LPWSTR, C++11 u16string?
If I'm developing for Windows and some WinAPI functions require me to use LPWSTR as string data type. Is it okay to use C++11's u16string in my library? Are those two data types the same thing?
It ...
0
votes
2answers
331 views
wchar_t is unsigned or signed
In this link unsigned wchar_t is typedefed as WCHAR. But I cant find this kind of typedef in my SDK winnt.h or mingw winnt.h.
wchar_t is signed or unsigned?
I am using WINAPIs in C language.
0
votes
3answers
620 views
wostringstream, Ascii, Unicode, Win32 and integer concatenation to string
I am writing a library that uses Win32 APIs, and I would like to be able to compile it for both ASCII and Unicode (wide character is the type), and I am generating an internal class name (read: WinAPI ...
1
vote
1answer
105 views
Start with UNICODE supported WINAPI programming
I started developing an application in C using WINAPIs. I want my application to be UNICODE supported.
I am using mingw with gcc compiler. What should I do to make my app
UNICODE support. It ...
2
votes
1answer
79 views
What is this ? in the beginning of the console output after reading a text file encoded with Unicode?
I've been tinkering with reading files(text files encoded in Unicode) and for some reason I get a question mark in the beginning of the output.
Here's the code.
#include <iostream>
#include ...
0
votes
2answers
128 views
Python: use Windows API to create Unicode rendering of Japanese/Chinese text
I am trying to use a Python program to read a series of non-western (Japanese/Chinese) Unicode character strings from an Excel .xls file and create an image file for each string. The xlrd module gives ...
36
votes
3answers
4k views
What's “wrong” with C++ wchar_t and wstrings? What are some alternatives to wide characters?
I have seen a lot of people in the C++ community(particularly ##c++ on freenode) resent the use of wstrings and wchar_t, and their use in the windows api. What is exactly "wrong" with wchar_t and ...
1
vote
1answer
238 views
Difference between UNICODE and _UNICODE [duplicate]
Possible Duplicate:
Why both UNICODE and _UNICODE?
What is the difference between UNICODE and _UNICODE?
Do we need to define both if compiling the program to use unicode characters?
Is ...
2
votes
1answer
151 views
How to mention a specific font as default for a particular unicode value in windows?
I am making a win32 application using c++. When using the default font, the system takes care of displaying non English symbols, such as characters in Hindi. However, for some special symbols, such as ...
0
votes
1answer
324 views
command line arguements not recognised by int _tmain ( int argc, TCHAR* argv[] ) with unicode defined
#define UNICODE
#define WINVER 0x502
#include <stdio.h>
#include <windows.h>
#include <tchar.h>
int _tmain( int argc, TCHAR* argv[] ) {
if ( argc > 1 && lstrcmpi( ...
2
votes
3answers
2k views
Correctly reading a utf-16 text file into a string without external libraries?
I've been using StackOverflow since the beginning, and have on occasion been tempted to post questions, but I've always either figured them out myself or found answers posted eventually... until now. ...
1
vote
1answer
122 views
Win32 UTF-16 character indexing
I'm just starting out with Win32 unicode strings (UTF-16). Is there any way to quickly obtain the byte index of any particular character in the string, since some characters might use four bytes (from ...
7
votes
3answers
204 views
UTF-8 to UTF-16 API wrapper libraries for Windows?
Is there any wrapper library out there that mimics the Windows "ANSI" function names (e.g. CreateFileA), assumes the inputs are in UTF-8, converts them to UTF-16, calls the UTF-16 version of the ...
7
votes
1answer
227 views
What is the different between printf & std::ostream under windows console using UTF-8 output
I have a program that prints UTF-8 string to the console:
#include <stdio.h>
int main()
{
printf("Мир Peace Ειρήνη\n");
return 0;
}
I configure the console to use True Type fonts ...
1
vote
2answers
264 views
Converting ASCII strings to UTF-16 before passing them to Windows API functions
In my current project I've been using wide chars (utf16). But since my only input from the user is going to be a url, which has to end up ascii anyways, and one other string, I'm thinking about just ...
0
votes
2answers
408 views
How to create a file with UNICODE path on Windows with C++
I am wondering which Win32 API call is creating the files with UNICODE path. Just to make sure, I am not talking about the content here only the file path. I would appreciate if somebody would hit me ...
0
votes
1answer
251 views
Can I hardcode glyph indices in my code?
Given that the Windows API function GetGlyphIndices() can translate a 2 byte UNICODE char code into a glyph index, I intend to hardcode those glyph indices, instead of the UNICODE points. Is that ...
2
votes
1answer
698 views
WIndows MAPI unicode issue
It seems to me that MAPI (Windows Mail API) has issues with UTF8 (or maybe I did something wrong).
Code sample:
HMODULE m_hLib = LoadLibraryA("MAPI32.DLL");
if (m_hLib == NULL)
return ...

