C++11 removed the deprecated ability to assign string literals to char*, and std::string::c_str() provides const char* as its type. Making these strings const does not appear to impact internal sdk functioning as they are not modified. Additionally I added an extern "C" guard to prevent C++ name mangling.
C++11 removed the deprecated ability to assign string literals to
char*
, andstd::string::c_str()
providesconst char*
as its type. Making these stringsconst
does not appear to impact internal sdk functioning as they are not modified. Additionally I added anextern "C"
guard to prevent C++ name mangling.