We will send you a couple of updated files: SFSArray.cpp and SFSObject.cpp
Please update your API with these files.
After that you can print SFS objects into VisualStudio in this way:
Code: Select all
string* dump = params->GetDump();
#ifdef UNICODE
wstring unicodeDump = wstring(dump->begin(), dump->end());
OutputDebugString(unicodeDump.c_str());
OutputDebugString(L"\n");
#else
OutputDebugString(dump->c_str());
OutputDebugString("\n");
#endif
where params has been declared as
SFSObject* params
Updated files will be included into next API version.