Ignore:
Timestamp:
Apr 2, 2003, 2:58:58 PM (22 years ago)
Author:
sandervl
Message:

YD: Changes for header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/stubs.cpp

    r9748 r9975  
    1 /* $Id: stubs.cpp,v 1.38 2003-02-04 11:29:02 sandervl Exp $
     1/* $Id: stubs.cpp,v 1.39 2003-04-02 12:58:31 sandervl Exp $
    22 *
    33 * Win32 KERNEL32 Subsystem for OS/2
     
    11271127
    11281128/*****************************************************************************
    1129  * Name      : DWORD ReadProcessMemory
     1129 * Name      : BOOL ReadProcessMemory
    11301130 * Purpose   : The ReadProcessMemory function reads memory in a specified process.
    11311131 *             The entire area to be read must be accessible, or the operation fails.
     
    11431143 *****************************************************************************/
    11441144
    1145 DWORD WIN32API ReadProcessMemory(HANDLE  hProcess,
    1146                                  LPCVOID lpBaseAddress,
    1147                                  LPVOID  lpBuffer,
    1148                                  DWORD   cbRead,
    1149                                  LPDWORD lpNumberOfBytesRead)
     1145BOOL WIN32API ReadProcessMemory(HANDLE  hProcess,
     1146                                LPCVOID lpBaseAddress,
     1147                                LPVOID  lpBuffer,
     1148                                DWORD   cbRead,
     1149                                LPDWORD lpNumberOfBytesRead)
    11501150{
    11511151  dprintf(("Kernel32: ReadProcessMemory(%08xh,%08xh,%08xh,%08xh,%08xh) not completely implemented",
     
    13551355
    13561356/*****************************************************************************
    1357  * Name      : DWORD SetTapeParameters
     1357 * Name      : BOOL SetTapeParameters
    13581358 * Purpose   : The SetTapeParameters function either specifies the block size
    13591359 *             of a tape or configures the tape device.
     
    13781378           lpTapeInformation));
    13791379
    1380   return (ERROR_NOT_SUPPORTED);
     1380  SetLastError(ERROR_NOT_SUPPORTED);
     1381  return FALSE;
    13811382}
    13821383
     
    15671568
    15681569
    1569 /*****************************************************************************
    1570  * Name      : DWORD SetThreadPriorityBoost
    1571  * Purpose   : Unknown
    1572  * Parameters: Unknown (wrong)
    1573  * Variables :
    1574  * Result    : Unknown
    1575  * Remark    :
    1576  * Status    : UNTESTED STUB
    1577  *
    1578  * Author    : Patrick Haller [Tue, 1999/06/08 21:44]
    1579  *****************************************************************************/
    1580 
    1581 DWORD WIN32API SetThreadPriorityBoost(DWORD x1,
    1582                                       DWORD x2)
    1583 {
    1584   dprintf(("KERNEL32: SetThreadPriorityBoost(%08xh, %08xh) not implemented\n",
    1585            x1,
    1586            x2));
    1587 
    1588   return (0);
    1589 }
Note: See TracChangeset for help on using the changeset viewer.