|
发表于 2020-1-26 10:00:02
|
显示全部楼层
这是函数声明,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
);
注意:lpString是否是宽字符,cbCount是否正确,lprc是否足够大
|
|