I am making a win32 app, and I have created text using this code:
TCHAR test[] = _T("welcome to my app :D");
//the textout part is already in WM_PAINT.
TextOut(hdc,
5, 5,
test, _tcslen(test));
and the text appears like this:
as you can see, the text is sort of low quality. how can I make my text look better, for example using ClearType?
Example:

