What the difference between LPCSTR, LPCTSTR and LPTSTR?
Why do we need to do this to convert a string into a LV / _ITEM structure variable pszText:
LV_DISPINFO dispinfo;
dispinfo.item.pszText = LPTSTR((LPCTSTR)string);
|
|
To answer the first part of your question: LPCSTR is a const string LPCTSTR is a const TCHAR string, (TCHAR being either a wide char or char depending on whether UNICODE is defined) LPTSTR is a (non-const) TCHAR string This is a great codeproject article describing C++ strings (see 2/3 the way down for a chart comparing the different types) |
||||
|
|
quick and dirty: LP == long pointer. Just think pointer or char* C = const in this case i think they mean the character string is a const, not the pointer being const. STR is string the T is for a wide character or char (TCHAR) depending on compile options. |
|||||||||||||||
|
|
Adding to John and Tim's answer. Unless you are coding on Win98, there are only two of the 6+ string types you should be using in your application
The rest are meant to support ANSI platforms or dual compiles. Those are not as relevant today as they used to be. |
|||||
|
|
To answer the second part of your question, you need to do things like
because MS's LVITEM struct has an LPTSTR, i.e. a mutable T-string pointer, not an LPCTSTR. What you are doing is 1) convert 2) convert that read-only pointer into a writeable pointer by casting away its const-ness. It depends what dispinfo is used for whether or not there is a chance that your ListView call will end up trying to write through that pszText. If it does, this is a potentially very bad thing: after all you were given a read-only pointer and then decided to treat it as writeable: maybe there is a reason it was read-only! If it is a CString you are working with you have the option to use 99% of the time this will be unnecessary and treating the |
|||
|
|