#include <win32/thpcore.h>void THPPrint(const char* format, ...);void THPPrintError(const char* format, ...);void THPPrintLog(const char* format, ...);format |
Pointer to a null-terminated string that includes a format specification (same as the C standard output function). |
... |
Option argument. |
None.
When their respective THPVerboseFlag flags are set to non-zero values, formatted output data is output via the functions registered in THPPrintFunc/THPPrintErrorFunc/THPPrintLogFunc.
If no functions are registered in THPPrintFunc/THPPrintErrorFunc/THPPrintLogFunc, the formatted output data is output to the standard error output (stderr), standard error output (stderr) and standard output (stdout), respectively.
THPVerboseFlag, THPPrintFunc/THPPrintErrorFunc/THPPrintLogFunc
03/01/2006 Initial version.