Changeset 1924 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Dec 1, 1999, 7:40:49 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r1885 r1924 1 /* $Id: stubs.cpp,v 1.1 0 1999-11-30 14:15:54sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.11 1999-12-01 18:40:48 sandervl Exp $ */ 2 2 3 3 /* … … 2136 2136 } 2137 2137 2138 /*****************************************************************************2139 * Name : BOOL GetProcessTimes2140 * Purpose : The GetProcessTimes function obtains timing information about a specified process.2141 * Parameters: HANDLE hProcess specifies the process of interest2142 * LPFILETIME lpCreationTime when the process was created2143 * LPFILETIME lpExitTime when the process exited2144 * LPFILETIME lpKernelTime time the process has spent in kernel mode2145 * LPFILETIME lpUserTime time the process has spent in user mode2146 * Variables :2147 * Result : TRUE / FALSE2148 * Remark :2149 * Status : UNTESTED STUB2150 *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 2170 2138 2171 2139
Note:
See TracChangeset
for help on using the changeset viewer.