CDB: Pass settings maxStringLength and maxStackDepth to extension.

Change-Id: I602aa3758817026c8b4cbda1cc9fa9eff95fc691
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Friedemann Kleint
2013-01-31 14:24:39 +01:00
committed by hjk
parent 9c96a5a971
commit 72421c18c1
5 changed files with 62 additions and 2 deletions

View File

@@ -43,6 +43,16 @@ WINDBG_EXTENSION_APIS ExtensionApis = {sizeof(WINDBG_EXTENSION_APIS), 0, 0, 0,
const char *ExtensionContext::stopReasonKeyC = "reason";
const char *ExtensionContext::breakPointStopReasonC = "breakpoint";
/*! \class Parameters
Externally configureable parameters.
\ingroup qtcreatorcdbext
*/
Parameters::Parameters() : maxStringLength(10000), maxStackDepth(1000)
{
}
/*! \class ExtensionContext
Global singleton with context.