Visual C++ Runtime: Difference between revisions

m
Bot: Replace deprecated source tag with syntaxhighlight
[unchecked revision][unchecked revision]
m (Bot: Replace deprecated source tag with syntaxhighlight)
m (Bot: Replace deprecated source tag with syntaxhighlight)
 
Line 5:
This code will help to call all constructors for global static variables.
 
<sourcesyntaxhighlight lang="c">// Constructor prototypes
typedef void (__cdecl *_PVFV)(void);
typedef int (__cdecl *_PIFV)(void);
Line 77:
_initterm(__xc_a, __xc_z);
return true;
}</sourcesyntaxhighlight>