THPPrint/THPPrintError/THPPrintLog

C Specification

#include <win32/thpcore.h>
void THPPrint(const char* format, ...);
void THPPrintError(const char* format, ...);
void THPPrintLog(const char* format, ...);

Arguments

format Pointer to a null-terminated string that includes a format specification (same as the C standard output function).
... Option argument.

Return Values

None.

Description

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.

See Also

THPVerboseFlag, THPPrintFunc/THPPrintErrorFunc/THPPrintLogFunc

Revision History

03/01/2006 Initial version.