Function ProTKWprintf
Description
Provides a UNICODE-supported equivalent to the C run time function wprintf(). This function supports all format specifiers and modifiers as are supported by the C-language specification. The data will be transcoded to native encoding, which may result in out-of-locale characters in the results.
Synopsis
#include <ProTKRunTime.h>
int
ProTKWprintf
(
const wchar_t* format_string
/* (In)
The format string.
*/
...
/* (In)
The variant values to replace the format specifiers included in the string.
*/
)
Returns
Value
The number of characters sent to stdout.
Was this helpful?