Changeset 21999 for trunk/src/Odin32API
- Timestamp:
- Apr 18, 2012, 10:46:37 PM (13 years ago)
- Location:
- trunk/src/Odin32API
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Odin32API/odindll.cpp
r21384 r21999 87 87 88 88 // Uncomment this to enable proper __try/__except support: 89 //EnableSEH(); 89 #ifdef ODIN_FORCE_WIN32_TIB 90 ForceWin32TIB(); 91 #endif 90 92 dllHandle = RegisterLxDll(hModule, LibMain, (PVOID)&_Resource_PEResTab); 91 93 if(dllHandle == 0) -
trunk/src/Odin32API/odinexe.cpp
r21384 r21999 27 27 int main(int argc, char *argv[]) 28 28 { 29 // Uncomment this to enable proper __try/__except support: 30 //EnableSEH(); 29 #ifdef ODIN_FORCE_WIN32_TIB 30 // Needed for proper __try/__except support: 31 ForceWin32TIB(); 32 #endif 31 33 RegisterLxExe(WinMain, (PVOID)&_Resource_PEResTab); 32 34 }
Note:
See TracChangeset
for help on using the changeset viewer.