Ignore:
Timestamp:
May 2, 2000, 10:53:15 PM (25 years ago)
Author:
sandervl
Message:

added exception stack dump code; GetLocaleInfoA fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/winexebase.cpp

    r3406 r3483  
    1 /* $Id: winexebase.cpp,v 1.8 2000-04-16 18:05:04 sandervl Exp $ */
     1/* $Id: winexebase.cpp,v 1.9 2000-05-02 20:53:14 sandervl Exp $ */
    22
    33/*
     
    120120  //Set default FPU control word (no exceptions); same as in NT
    121121  _control87(0x27F, 0xFFF);
     122  ULONG Size = 16, Attr;
     123  rc = DosQueryMem((PVOID) (entryPoint), &Size, &Attr);
     124  dprintf(("Start exe; Attr = %x, rc = %d", Attr, rc));
    122125  rc = ((WIN32EXEENTRY)entryPoint)(NULL);
    123126  RestoreOS2TIB();
Note: See TracChangeset for help on using the changeset viewer.