CodeCat
CodeCat

Reputation: 171

Where can I download MINGW API docs?

I am failed that using command man to find some MINGW function like GetPixel(),GetDC(). So Where can I download a completed MINGW API docs?

Upvotes: 0

Views: 233

Answers (1)

c000000fd
c000000fd

Reputation: 11

I don't know MINGW. But these APIs are part of Windows API. You can find these reference on MSDN Web site.

GetPixel http://msdn.microsoft.com/en-us/library/windows/desktop/dd144909(v=vs.85).aspx

GetDC http://msdn.microsoft.com/en-us/library/windows/desktop/dd144871(v=vs.85).aspx

Upvotes: 1

Related Questions