Here I have it:

BOOL TextOut(
HDC hdc, // handle to device context
int nXStart, // x-coordinate of starting position
int nYStart, // y-coordinate of starting position
LPCTSTR lpString, // pointer to string
int cbString; // number of characters in string
);

char *f_name = "Matt";
TextOut(HDC, 10, 10, *f_name, strlen(*f_name));

but I get:

89 book_windows.cpp
parse error before `,'