| |||
Home > Class Reference > The CADICallbackObj class > CADICallbackObj::appliOutput() |
Print console output in all connected debuggers that implement this callback function.
virtual void CADICallbackObj::appliOutput(uint32_t streamId, uint32_t count, uint32_t *actualCount, const char *buffer) = 0;
where:
streamId
is the stream identifier and must be either CADI_STREAMID_STDOUT
or CADI_STREAMID_STDERR
.
count
is the number of characters to output.
actualCount
is the number of characters output to the file.
A return value of 0 indicates end of file. A return of -1, ~unit32(0)
,
indicates an error.
buffer
contains the characters to output. This buffer can
contain NULL
characters and is not NULL
terminated.