Tagged Questions
The lpcstr tag has no wiki summary.
2
votes
6answers
75 views
How to use Templates when working with std::strings and c-style strings?
I was just messing around with templates, when I tried to do this:
template<typename T> void print_error(T msg)
{
#ifdef PLATFORM_WIN32
::MessageBox(0, reinterpret_cast< LPCSTR ...
2
votes
4answers
360 views
convert std::string to LPCSTR with trailing or leading '\0'
How can I convert std::string to LPCSTR while preserving '\0' characters?
I want to use the result on OPENFILENAME.lpstrFilter which requires the filter to contain '\0' as delimiters.
...
2
votes
3answers
2k views
What does LPCWSTR stand for and how should it be handled with?
First of all, what is it exactly? I guess it is a pointer (LPC means long pointer constant), but what does "W" mean? Is it a specific pointer to a string or a pointer to a specific string?
For ...
1
vote
3answers
626 views
How to convert QString to LPCSTR (Unicode)
how can I convert QString to LPCSTR ?
How do I do it when #ifdef UNICODE is defined and when it isn't ?
Thanks very much :)
1
vote
2answers
143 views
JNA mapping LPCSTR on windows platform
I am working on call one DLL api for C/C++ with JNA.
The function API in DLL is short DKT_init(LPCSTR name). I made the corresponding java method as public short DKT_init(String name); But when I ...
0
votes
2answers
752 views
C++ concat LPCTSTR
I am implementing a custom action for a WindowsCE CAB file, and I need to concat a LPCTSTR to get a proper path to an exe.
My custom action receives a LPCTSTR as an argument.
So (pseudocode):
...
0
votes
2answers
2k views
how can convert LPCSTR string into LPCTSTR string?
i am trying to convert a LPCSTR string into LPCTSTR string. i want to concatenate two string,when i try like this
LPCTSTR str1 = L"Raja"
LPCSTR str2 = "Kumar"
wcscat_s(str1,(LPCTSTR)str2);
i found ...
0
votes
7answers
614 views
How to find the length of an LPCSTR
I'm trying to convert an LPCSTR to an integer using atoi(), and to verify that the conversion occurred successfully I want to count the number of digits in the integer it produced and the original ...