|
|
发表于 2005-3-12 17:56:00
|
显示全部楼层
Re:请教,怎样在directdraw中显示文字
The TextOut function writes a character string at the specified location, using the currently selected font, background color, and text color
BOOL TextOut(
HDC hdc, // handle to DC
int nXStart, // x-coordinate of starting position
int nYStart, // y-coordinate of starting position
LPCTSTR lpString, // character string
int cbString // number of characters
); |
|