Changeset 5090 for trunk/src/kernel32/winexebase.cpp
- Timestamp:
- Feb 11, 2001, 11:35:29 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winexebase.cpp
r4440 r5090 1 /* $Id: winexebase.cpp,v 1.1 2 2000-10-06 11:04:01sandervl Exp $ */1 /* $Id: winexebase.cpp,v 1.13 2001-02-11 10:34:45 sandervl Exp $ */ 2 2 3 3 /* … … 27 27 #include <wprocess.h> 28 28 #include <pefile.h> 29 #include <cpuhlp.h> 29 30 #include "exceptions.h" 30 31 #include "exceptutil.h" … … 114 115 115 116 //Set default FPU control word (no exceptions); same as in NT 116 _control87(0x27F, 0xFFF); 117 #if 0 118 ULONG Size = 16, Attr; 119 rc = DosQueryMem((PVOID) (entryPoint), &Size, &Attr); 120 dprintf(("Start exe; Attr = %x, rc = %d", Attr, rc)); 121 #else 117 CONTROL87(0x27F, 0xFFF); 122 118 dprintf(("Start exe")); 123 #endif124 119 rc = ((WIN32EXEENTRY)entryPoint)(NULL); 125 120 RestoreOS2TIB();
Note:
See TracChangeset
for help on using the changeset viewer.