I coding Python apı on c++ like :
std::string getPlayerName()
{
std::string result;
if (!PyCallClassMemberFunc(py_module, "GetMainCharacterName", Py_BuildValue("()"), result)) {
return "";
}
return result;
}
But when call python functions i get C++ Runtime Error and client crashes.All c++ runtime libraries installed.Can one help me ?






