I have a C++ dll from other company. there is a method with a string& msg parameter, void methodA(string& msg);
What I have now is a char* with length which is big enough to take the msg from methodA. I want to call methodA to get message back from methodA.
Can I do it? how? thanks,