C++ Append String
I do something like: which works : but I wonder if their is not a better way to do it.
I do something like: which works : but I wonder if their is not a better way to do it.
PHP Code
MT4_EXPFUNC void __stdcall TEST(char* _sIn) { // I need to append to s another string: std::string _sInStr = _sIn; std::string _sOutStr = _sInStr + "Whatever To append"; MessageBoxA(0, _sOutStr.c_str(), "DLL Message", MB_OK); }
__Thanks__ MJ