The OutputProc function is an application-defined callback function that draws a string as a result of a call to the GrayString function.
BOOL CALLBACK OutputProc(
HDC hdc, |
// handle to device context |
LPARAM lpData, |
// pointer to string to be drawn |
int cchData |
// length of string to be drawn |
); |
If it succeeds, the callback function should return TRUE.
If the function fails, the return value is FALSE.
The callback function must draw an image relative to the coordinates (0,0).
OutputProc is a placeholder for the application-defined function name.