Ignore:
Timestamp:
Dec 1, 1999, 7:40:49 PM (26 years ago)
Author:
sandervl
Message:

added GetProcessTimes + several fixes

File:
1 edited

Legend:

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

    r1885 r1924  
    1 /* $Id: stubs.cpp,v 1.10 1999-11-30 14:15:54 sandervl Exp $ */
     1/* $Id: stubs.cpp,v 1.11 1999-12-01 18:40:48 sandervl Exp $ */
    22
    33/*
     
    21362136}
    21372137
    2138 /*****************************************************************************
    2139  * Name      : BOOL GetProcessTimes
    2140  * Purpose   : The GetProcessTimes function obtains timing information about a specified process.
    2141  * Parameters: HANDLE     hProcess       specifies the process of interest
    2142  *             LPFILETIME lpCreationTime when the process was created
    2143  *             LPFILETIME lpExitTime     when the process exited
    2144  *             LPFILETIME lpKernelTime   time the process has spent in kernel mode
    2145  *             LPFILETIME lpUserTime     time the process has spent in user mode
    2146  * Variables :
    2147  * Result    : TRUE / FALSE
    2148  * Remark    :
    2149  * Status    : UNTESTED STUB
    2150  *
    2151  * Author    : Patrick Haller [Mon, 1998/06/15 08:00]
    2152  *****************************************************************************/
    2153 
    2154 BOOL WIN32API GetProcessTimes(HANDLE     hProcess,
    2155                                  LPFILETIME lpCreationTime,
    2156                                  LPFILETIME lpExitTime,
    2157                                  LPFILETIME lpKernelTime,
    2158                                  LPFILETIME lpUserTime)
    2159 {
    2160   dprintf(("Kernel32: GetProcessTimes(%08xh,%08xh,%08xh,%08xh,%08xh) not implemented.\n",
    2161            hProcess,
    2162            lpCreationTime,
    2163            lpExitTime,
    2164            lpKernelTime,
    2165            lpUserTime));
    2166 
    2167   return (FALSE);
    2168 }
    2169 
    21702138
    21712139
Note: See TracChangeset for help on using the changeset viewer.