BootLog Function (Compact 2013)
3/26/2014
You use BootLog to produce a formatted string (although it calls other logging functions to actually perform these operations).
BootLog takes a variable number of parameters. Use it as you would use the standard printf function.
This function is implemented in:
%_WINCEROOT%\Platform\Common\Src\Common\Bldr\Log\Log.c
Its syntax is:
void BootLog ( wcstring_t format, ... );
BootLog Function Input Parameters
Parameter |
Type |
Description |
---|---|---|
format |
wcstring_t |
A string. As with printf, use % characters to specify the formatting of the output. |
This function does not return a value.