Changeset 1239 for trunk/src/peldr/pe.cpp
- Timestamp:
- Oct 10, 1999, 10:58:51 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/peldr/pe.cpp
r1002 r1239 1 /* $Id: pe.cpp,v 1. 9 1999-09-21 18:35:01 sandervl Exp $ */1 /* $Id: pe.cpp,v 1.10 1999-10-10 08:58:51 sandervl Exp $ */ 2 2 3 3 /* … … 31 31 char INFO_BANNER[] = "Usage: PE winexe commandline"; 32 32 char szErrorTitle[] = "Odin"; 33 char sz MemErrorMsg[] = "Memory allocation failure";33 char szLoadErrorMsg[] = "Can't load executable"; 34 34 char szFileErrorMsg[] = "File IO error"; 35 35 char szPEErrorMsg[] = "Not a valid win32 exe. (perhaps 16 bits windows)"; … … 96 96 } 97 97 if(CreateWin32Exe(exeName, ReserveMem()) == FALSE) { 98 MyWinMessageBox(HWND_DESKTOP, HWND_DESKTOP, sz MemErrorMsg, szErrorTitle, 0, MB_OK | MB_ERROR | MB_MOVEABLE);98 MyWinMessageBox(HWND_DESKTOP, HWND_DESKTOP, szLoadErrorMsg, szErrorTitle, 0, MB_OK | MB_ERROR | MB_MOVEABLE); 99 99 goto fail; 100 100 }
Note:
See TracChangeset
for help on using the changeset viewer.