cannot convert from 'std::string' to 'LPSTR'

Viewed 48395

As I clould not pass LPCSTR from one function to another (Data get changed) I tried passing it as a string.

But later I need to again convert it back to LPSTR. While trying the conversion I am getting the above error:

cannot convert from 'std::string' to 'LPSTR'

How can I resolve this?

6 Answers
Related