Changeset 9748 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Feb 4, 2003, 12:29:03 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r9653 r9748 1 /* $Id: stubs.cpp,v 1.3 7 2003-01-10 12:57:14sandervl Exp $1 /* $Id: stubs.cpp,v 1.38 2003-02-04 11:29:02 sandervl Exp $ 2 2 * 3 3 * Win32 KERNEL32 Subsystem for OS/2 … … 1061 1061 1062 1062 1063 /*****************************************************************************1064 * Name : BOOL GetThreadTimes1065 * Purpose : The GetThreadTimes function obtains timing information about a specified thread.1066 * Parameters: HANDLE hThread specifies the thread of interest1067 * LPFILETIME lpCreationTime when the thread was created1068 * LPFILETIME lpExitTime when the thread exited1069 * LPFILETIME lpKernelTime time the thread has spent in kernel mode1070 * LPFILETIME lpUserTime time the thread has spent in user mode1071 * Variables :1072 * Result : TRUE / FALSE1073 * Remark :1074 * Status : UNTESTED STUB1075 *1076 * Author : Patrick Haller [Mon, 1998/06/15 08:00]1077 *****************************************************************************/1078 1079 BOOL WIN32API GetThreadTimes(HANDLE hThread,1080 LPFILETIME lpCreationTime,1081 LPFILETIME lpExitTime,1082 LPFILETIME lpKernelTime,1083 LPFILETIME lpUserTime)1084 {1085 dprintf(("Kernel32: GetThreadTimes(%08xh,%08xh,%08xh,%08xh,%08xh) not implemented.\n",1086 hThread,1087 lpCreationTime,1088 lpExitTime,1089 lpKernelTime,1090 lpUserTime));1091 1092 return (FALSE);1093 }1094 1063 1095 1064
Note:
See TracChangeset
for help on using the changeset viewer.