Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
Could you say exactly what type "string" is? (e.g. CString) – John Sibly Nov 26 '08 at 17:24

4 Answers

up vote 35 down vote accepted

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)

share|improve this answer
I quickly scanned that article - seems great, adding it to my bookmarks and will read it as soon as I have time. – nothingMaster Nov 26 '08 at 17:26

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.

share|improve this answer
3  
T is not for wide character, it is for varying character type. W is for wide (as in WCHAR). If UNICODE is defined, TCHAR == WCHAR, otherwise TCHAR == CHAR. So if UNICODE is not defined, LPCTSTR == LPCSTR. – jalf Nov 26 '08 at 17:56
2  
that is why I wrote "depending on compile options" – Tim Nov 26 '08 at 18:37
4  
I really love this type of explaining :) . Thanks so much – Vdt Mar 19 '10 at 15:54
Cheers for the breakdown! – Steve Aug 26 '12 at 4:08

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

  • LPWSTR
  • LPCWSTR

The rest are meant to support ANSI platforms or dual compiles. Those are not as relevant today as they used to be.

share|improve this answer
What about std::string? – BlueRaja - Danny Pflughoeft May 12 '10 at 16:53
@BlueRaja, I was mainly referring to C based strings in my answer. But for C++ I would avoid std::string because it is still an ASCII based string and prefer std::wstring instead. – JaredPar May 12 '10 at 17:25

To answer the second part of your question, you need to do things like

LV_DISPINFO dispinfo;  
dispinfo.item.pszText = LPTSTR((LPCTSTR)string);

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 string (a CString at a guess) into an LPCTSTR (which in practise means getting the address of its character buffer as a read-only pointer)

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 string.GetBuffer() -- that deliberately gives you a writeable LPTSTR. You then have to remember to call ReleaseBuffer() if the string does get changed. Or you can allocate a local temporary buffer and copy the string into there.

99% of the time this will be unnecessary and treating the LPCTSTR as an LPTSTR will work... but one day, when you least expect it...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.