|
This is the function declaration, BOOL ExtTextOut (
HDC hdc, // handle to device context
int X, // x-coordinate of reference point
int Y, // y-coordinate of reference point
UINT fuOptions, // text-output options
CONST RECT * lprc, // optional clipping and / or opaquing rectangle
LPCTSTR lpString, // points to string
UINT cbCount, // number of characters in string
CONST INT * lpDx // pointer to array of intercharacter spacing
// values
);
Note: Is lpString a wide character, is cbCount correct, and is lprc large enough? |
|