Description | |||||
Provides a UNICODE-supported equivalent to the C run time function vsnprintf(). This function supports all format specifiers and modifiers as are supported by the C-language specification. The output buffer will contain UNICODE data. | |||||
Synopsis | |||||
#include <ProTKRunTime.h> | |||||
int | ProTKVsnprintf | ( | |||
char* buffer | |||||
/* (Out) | |||||
The buffer into which the output will be printed. | |||||
*/ | |||||
size_t size | |||||
/* (In) | |||||
The number of characters that may be written in the output buffer. | |||||
*/ | |||||
const char* format_string | |||||
/* (In) | |||||
The format string. | |||||
*/ | |||||
va_list args | |||||
/* (In) | |||||
The variant values to replace the format specifiers included in the string. | |||||
*/ | |||||
) | |||||
Returns | |||||
|