コード例 #1
0
ファイル: crt0.c プロジェクト: mysticTot/learn_c
int
_tmainCRTStartup(
    void
) {
    /*
     * The /GS security cookie must be initialized before any exception
     * handling targetting the current image is registered.  No function
     * using exception handling can be called in the current image until
     * after __security_init_cookie has been called.
     */
    __security_init_cookie();
    return __tmainCRTStartup();
}
コード例 #2
0
ファイル: crtexe.c プロジェクト: HBelusca/NasuTek-Odyssey
int mainCRTStartup (void)
{
  mingw_app_type = 0;
  __security_init_cookie ();
  return __tmainCRTStartup ();
}