Tagged Questions
4
votes
5answers
813 views
WideCharToMultiByte() vs. wcstombs()
What is the difference between WideCharToMultiByte() and wcstombs()
When to use which one?
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
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, ...
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 ...