Jump to content

Recommended Posts

Posted

wouldn't it be nice if all coding languages had a helpfile like autoit. i think the helpfile is what makes it so nice.

Posted (edited)

The next best thing, MSDN. It is probably the most useful "help file" on the web.

http://msdn2.microsoft.com/en-us/library/a...686(VS.85).aspx

You can't exactly have a help file for C++ because it has no native "commands" - other than what the compiler implements. You will need to look up the help file for the API you want to use. For example, the link above is the "help file" for the Windows API.

Edited by chris95219
Posted (edited)

All of the native C++ includes are based on some form of a connection to the runtime, which I can only assume is built in assembly.

Edit: just ignore this, it ended up being wrong.

Edited by Richard Robertson
Posted
  Richard Robertson said:

All of the native C++ includes are based on some form of a connection to the runtime, which I can only assume is built in assembly.

What runtime? Do you mean MSVCRT? It's written in C and the source is available. Do you mean STL? It's written in C++ using mostly templates. Do you mean the C Standard Library? It's written in... C.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...