speeder
speeder

Reputation: 6306

MingW C++ Documentation?

I remember some years ago, when I learned C using Turbo C, it had a extensive documentation on its headers...

My question is: There are something like that for MingW?

Upvotes: 0

Views: 687

Answers (4)

winnetou
winnetou

Reputation: 11

Yes, there are MinGW-specific headers - I mean Windows-specific headers. But I'm also searching for a documentation, I couldn't find one yet.

Upvotes: 1

mingos
mingos

Reputation: 24542

You mean MinGW-specific headers? Do they exist at all? Just look for standard C and/or C++ references. They're all over the web. Look for gcc info, as MinGW is a Windows port of it.

Upvotes: 0

codaddict
codaddict

Reputation: 455440

You can make use of the man pages, if you've installed them.

Upvotes: 0

Kitsune
Kitsune

Reputation: 9341

MinGW is just a windows port of GCC, so the official GCC documentation should work (mostly) just fine.

Upvotes: 2

Related Questions