Visual C++ Runtime: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
No edit summary
No edit summary
Line 2: Line 2:




=Call Constructors For Global Static Variables=
==Call Constructors For Global Static Variables==
This code will help to call all constructors for global static variables.
This code will help to call all constructors for global static variables.


Line 80: Line 80:




=new And delete Operators=
==new And delete Operators==
One of the first things you'll want to do is implement new and delete operators. At first, you can't really implement them, and just need to have their stubs. Later on, when you get your memory manager working, you can fully implement them. Bellow are the stubs:
One of the first things you'll want to do is implement new and delete operators. At first, you can't really implement them, and just need to have their stubs. Later on, when you get your memory manager working, you can fully implement them. Bellow are the stubs:


Line 124: Line 124:




=See Also=
==See Also==
=== Articles ===
[[Visual Studio]]
[[C++]]
[[C++]]

=== External Links ===
[http://msdn.microsoft.com/en-us/library/bb918180.aspx CRT Initialization on MSDN]

[[Category:Compilers]]
[[Category:Compilers]]
[[Category:Visual C++]]
[[Category:Visual C++]]