Changeset 2493 for trunk/src


Ignore:
Timestamp:
Jan 21, 2000, 11:38:53 PM (26 years ago)
Author:
sandervl
Message:

memory map fixes

Location:
trunk/src/kernel32
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.CPP

    r2229 r2493  
    1 /* $Id: KERNEL32.CPP,v 1.40 1999-12-28 19:16:34 sandervl Exp $ */
     1/* $Id: KERNEL32.CPP,v 1.41 2000-01-21 22:38:52 sandervl Exp $ */
    22
    33/*
     
    401401int WIN32API MulDiv(int arg1, int arg2, int  arg3)
    402402{
    403     dprintf(("KERNEL32:  OS2MulDiv %d*%d/%d\n", arg1, arg2, arg3));
     403    dprintf2(("KERNEL32:  MulDiv %d*%d/%d\n", arg1, arg2, arg3));
    404404    if(arg3 == 0)
    405405        return 0;
  • trunk/src/kernel32/oslibdos.cpp

    r2311 r2493  
    1 /* $Id: oslibdos.cpp,v 1.15 2000-01-03 21:36:11 sandervl Exp $ */
     1/* $Id: oslibdos.cpp,v 1.16 2000-01-21 22:38:53 sandervl Exp $ */
    22/*
    33 * Wrappers for OS/2 Dos* API
     
    7272  rc = DosAliasMem(pb, cb, ppbAlias, 2);
    7373  if(rc) {
    74         dprintf(("OSLibDosAliasMem: DosAliasMem %x %x return %d", pb, cb, rc));
     74        dprintf(("OSLibDosAliasMem: DosAliasMem %x %x returned %d", pb, cb, rc));
    7575        return rc;
    7676  }
  • trunk/src/kernel32/winimagepeldr.cpp

    r2245 r2493  
    1 /* $Id: winimagepeldr.cpp,v 1.27 1999-12-29 12:39:09 sandervl Exp $ */
     1/* $Id: winimagepeldr.cpp,v 1.28 2000-01-21 22:38:53 sandervl Exp $ */
    22
    33/*
     
    688688 ULONG  baseAddress;
    689689
    690   if(fh.Characteristics & IMAGE_FILE_RELOCS_STRIPPED) {
     690  //SvL: We don't care where the image is loaded for resource lookup
     691  if(fh.Characteristics & IMAGE_FILE_RELOCS_STRIPPED && loadType == REAL_LOAD) {
    691692        return allocFixedMem(reservedMem);
    692693  }
Note: See TracChangeset for help on using the changeset viewer.