Changeset 484 for trunk/src/kernel32
- Timestamp:
- Aug 12, 1999, 12:27:56 AM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimage.cpp
r461 r484 1 /* $Id: winimage.cpp,v 1. 6 1999-08-09 22:10:09phaller Exp $ */1 /* $Id: winimage.cpp,v 1.7 1999-08-11 22:27:56 phaller Exp $ */ 2 2 3 3 /* … … 27 27 #include <odincrt.h> 28 28 29 #include <iostream.h>30 #include <fstream.h>29 //#include <iostream.h> 30 //#include <fstream.h> 31 31 #include <assert.h> 32 32 #include "misc.h" … … 1078 1078 0L); /* No extended attribute */ 1079 1079 1080 if (rc != NO_ERROR) { 1081 fout << "isPEImage: DosOpen returned " << rc << endl; 1082 return(FALSE); 1080 if (rc != NO_ERROR) 1081 { 1082 dprintf(("KERNEL32:Win32Image::isPEImage(%s) failed with %u\n", 1083 szFileName, 1084 rc)); 1085 return(FALSE); 1083 1086 } 1084 1087 -
trunk/src/kernel32/wprocess.cpp
r461 r484 1 /* $Id: wprocess.cpp,v 1.1 7 1999-08-09 22:10:09phaller Exp $ */1 /* $Id: wprocess.cpp,v 1.18 1999-08-11 22:27:56 phaller Exp $ */ 2 2 3 3 /* … … 15 15 #include <string.h> 16 16 #include <odincrt.h> 17 #include <odinwrap.h> 17 18 18 19 #include "unicode.h" … … 41 42 42 43 extern "C" ULONG QueryExceptionChain(); 44 45 46 ODINDEBUGCHANNEL(KERNEL32-WPROCESS) 43 47 44 48 //****************************************************************************** … … 421 425 422 426 423 HINSTANCE WIN32API LoadLibraryA(LPCTSTR lpszLibFile) 427 ODINFUNCTION1(HINSTANCE,LoadLibraryA,LPCTSTR,lpszLibFile) 428 //HINSTANCE WIN32API LoadLibraryA(LPCTSTR lpszLibFile) 424 429 { 425 430 HINSTANCE hDll;
Note:
See TracChangeset
for help on using the changeset viewer.