James Zhou 2000
Tuesday, November 26, 2013
How to draw text in Windows (simple API)
HDC
hdc;
hdc = GetDC(m_hWnd);
RECT
r;
GetClientRect(m_hWnd, &r);
ExtTextOut
(hdc, 500, 500,
ETO_CLIPPED
, &r, L
"test"
, 4,
NULL
);
posted by jameszhou2000 @
3:48 PM
0 Comments:
Post a Comment
<< Home
About Me
Name:
jameszhou2000
Location:
San Jose, CA, United States
...
View my complete profile
Previous Posts
old fashion open/write file in c code
Windows Timer Resolution problem
How to use Windows Timer API
How to create fullscreen window without title bar
Output debug data to debug windows in Visual C++
DirectShow filter, video renderer and filter graph...
C++ write or dump data to external files
How to print message to debug window in visual C++
How to use visual studio 2012 express edition to b...
Enabled MP4 support in VirtualDub
0 Comments:
Post a Comment
<< Home