![]() |
DSC Engine
|
send debug messages to the emulator More...
Go to the source code of this file.
Functions | |
| void | DSC::Debug::log (const char *message,...) |
| Sends a log message to the emulator. More... | |
| void | DSC::Debug::warn (const char *message,...) |
| Sends a warning message to the emulator. More... | |
| void | DSC::Debug::error (const char *message,...) |
| Sends an error message to the emulator. More... | |
send debug messages to the emulator
| void DSC::Debug::error | ( | const char * | message, |
| ... | |||
| ) |
Sends an error message to the emulator.
| [in] | message | log message, allows printf-like wildcards |
| [in] | ... | wildcard arguments |
See DSC::Debug::log() for more details
| void DSC::Debug::log | ( | const char * | message, |
| ... | |||
| ) |
Sends a log message to the emulator.
| [in] | message | log message, allows printf-like wildcards |
| [in] | ... | wildcard arguments |
Allowed wildcards:
%i : signed integer %u : unsigned integer %s : character string%b : short boolean (T/F)%B : long boolean (True/False)%x : lowercase hex (123ab)%X : uppercase hex (123AB)Usage:
| void DSC::Debug::warn | ( | const char * | message, |
| ... | |||
| ) |
Sends a warning message to the emulator.
| [in] | message | log message, allows printf-like wildcards |
| [in] | ... | wildcard arguments |
See DSC::Debug::log() for more details