Changeset 484 for trunk/src/kernel32


Ignore:
Timestamp:
Aug 12, 1999, 12:27:56 AM (26 years ago)
Author:
phaller
Message:

Fix: update

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:09 phaller Exp $ */
     1/* $Id: winimage.cpp,v 1.7 1999-08-11 22:27:56 phaller Exp $ */
    22
    33/*
     
    2727#include <odincrt.h>
    2828
    29 #include <iostream.h>
    30 #include <fstream.h>
     29//#include <iostream.h>
     30//#include <fstream.h>
    3131#include <assert.h>
    3232#include "misc.h"
     
    10781078               0L);                            /* No extended attribute */
    10791079
    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);
    10831086  }
    10841087
  • trunk/src/kernel32/wprocess.cpp

    r461 r484  
    1 /* $Id: wprocess.cpp,v 1.17 1999-08-09 22:10:09 phaller Exp $ */
     1/* $Id: wprocess.cpp,v 1.18 1999-08-11 22:27:56 phaller Exp $ */
    22
    33/*
     
    1515#include <string.h>
    1616#include <odincrt.h>
     17#include <odinwrap.h>
    1718
    1819#include "unicode.h"
     
    4142
    4243extern "C" ULONG QueryExceptionChain();
     44
     45
     46ODINDEBUGCHANNEL(KERNEL32-WPROCESS)
    4347
    4448//******************************************************************************
     
    421425
    422426
    423 HINSTANCE WIN32API LoadLibraryA(LPCTSTR lpszLibFile)
     427ODINFUNCTION1(HINSTANCE,LoadLibraryA,LPCTSTR,lpszLibFile)
     428//HINSTANCE WIN32API LoadLibraryA(LPCTSTR lpszLibFile)
    424429{
    425430  HINSTANCE hDll;
Note: See TracChangeset for help on using the changeset viewer.