Ignore:
Timestamp:
Apr 7, 2003, 8:40:53 PM (22 years ago)
Author:
sandervl
Message:

PF: NTDLL update for GCC 3.2.1 + resync with Wine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/initterm.cpp

    r9739 r9986  
    4040 void __ctordtorInit (void);
    4141 void __ctordtorTerm (void);
     42 void __ehInit();
     43 //InitOverrides deals with EMX runtime FS setting and allows us to
     44 //switch to using our own funcs namely _errno & _thread in runtime
     45 void InitOverrides(void);
    4246 int _CRT_init (void);
    4347 void _CRT_term (void);
     
    5963                                   ulFlag)
    6064{
    61    size_t i;
    6265   APIRET rc;
    6366
     
    7376           return 0;
    7477         __ctordtorInit ();
     78         __ehInit();
     79        InitOverrides();
    7580
    76          rc = DosExitList(EXITLIST_NONCRITDLL|EXLST_ADD, cleanup);
     81        rc = DosExitList(EXITLIST_NONCRITDLL|EXLST_ADD, cleanup);
    7782         if (rc)
    7883            return 0UL;
Note: See TracChangeset for help on using the changeset viewer.