Changeset 8449 for trunk/src


Ignore:
Timestamp:
May 17, 2002, 12:14:08 PM (23 years ago)
Author:
sandervl
Message:

added MapSL stub

Location:
trunk/src/kernel32
Files:
4 edited

Legend:

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

    r8427 r8449  
    1 ; $Id: KERNEL32.DEF,v 1.136 2002-05-16 12:15:59 sandervl Exp $
     1; $Id: KERNEL32.DEF,v 1.137 2002-05-17 10:14:07 sandervl Exp $
    22
    33;Basis is Windows95 KERNEL32
     
    659659;   MapHModuleSL               = _MapHModuleSL@??            @521       ;W95
    660660    MapLS                      = _MapLS@4                    @522       ;W95
    661 ;   MapSL                      = _MapSL@4                    @523       ;W95
     661    MapSL                      = _MapSL@4                    @523       ;W95
    662662    MapSLFix                   = _MapSLFix@4                 @524       ;W95
    663663    MapViewOfFile              = _MapViewOfFile@20           @525
  • trunk/src/kernel32/dbgwrap.cpp

    r8397 r8449  
    202202DEBUGWRAP4(MapLS);
    203203DEBUGWRAP4(MapSLFix);
     204DEBUGWRAP4(MapSL);
    204205DEBUGWRAP4(ReleaseThunkLock);
    205206DEBUGWRAP4(RestoreThunkLock);
  • trunk/src/kernel32/kernel32dbg.def

    r8427 r8449  
    1 ; $Id: kernel32dbg.def,v 1.12 2002-05-16 12:16:00 sandervl Exp $
     1; $Id: kernel32dbg.def,v 1.13 2002-05-17 10:14:07 sandervl Exp $
    22
    33;Basis is Windows95 KERNEL32
     
    659659;   MapHModuleSL               = _DbgMapHModuleSL@??            @521       ;W95
    660660    MapLS                      = _DbgMapLS@4                    @522       ;W95
    661 ;   MapSL                      = _DbgMapSL@4                    @523       ;W95
     661    MapSL                      = _DbgMapSL@4                    @523       ;W95
    662662    MapSLFix                   = _DbgMapSLFix@4                 @524       ;W95
    663663    MapViewOfFile              = _DbgMapViewOfFile@20           @525
  • trunk/src/kernel32/thunk.cpp

    r7846 r8449  
    1 /* $Id: thunk.cpp,v 1.7 2002-02-08 15:09:30 sandervl Exp $ */
     1/* $Id: thunk.cpp,v 1.8 2002-05-17 10:14:08 sandervl Exp $ */
    22
    33/*
     
    327327  return(0);
    328328}
     329//******************************************************************************
     330//******************************************************************************
     331void *WIN32API MapSL(DWORD arg1)
     332{
     333  dprintf(("MapSL %X not supported\n", arg1));
     334  return NULL;
     335}
    329336/***********************************************************************
    330337 *           UnMapSLFixArray   (KERNEL32.701)
Note: See TracChangeset for help on using the changeset viewer.