Framework library function. This function writes a debugging string to an attached terminal. The terminal should be set up for 9600 baud, 8 data bits, no parity, and 1 stop bit.
This function does not return a value.
void WINAPI debugPrintf(LPSTR lpFormat, arguments);
lpFormat (LPSTR)
The format string, which is identical to what you would use with the sprintf function.
arguments
Zero or more arguments to match the format string.
This function prints a string to show that control was passed to the routine.
\SAMPLES\EXAMPLE\EXAMPLE.C
short debugPrintfExample(void)
{
debugPrintf("Made it!\n");
return 1;
}