SetTextColor function gdi32
The SetTextColor function sets the text color for the specified device context to the specified color.
COLORREF SetTextColor(
HDC hdc,
COLORREF color
);
Implementation
int SetTextColor(int hdc, int color) => _SetTextColor(hdc, color);