Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.9.3
-
Visual Studio 2013
-
Patch Available
Description
When compiling the Thrift C++ library with UNICODE enabled TPipe and TPipeServer won't compile as the are using LPSTR which only works with Multi byte charactersets.
The appended patch uses LPTSTR instead of LPSTR which is set based on the UNICODE flag by Visual Studio.
It also does some casts from raw const char * to LPCSTR.