MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / GetProcessTimes

Function GetProcessTimes

extern/boost/boost/winapi/get_process_times.hpp:41–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39namespace winapi {
40
41BOOST_FORCEINLINE BOOL_ GetProcessTimes(
42 HANDLE_ hProcess,
43 LPFILETIME_ lpCreationTime,
44 LPFILETIME_ lpExitTime,
45 LPFILETIME_ lpKernelTime,
46 LPFILETIME_ lpUserTime)
47{
48 return ::GetProcessTimes(
49 hProcess,
50 reinterpret_cast< ::_FILETIME* >(lpCreationTime),
51 reinterpret_cast< ::_FILETIME* >(lpExitTime),
52 reinterpret_cast< ::_FILETIME* >(lpKernelTime),
53 reinterpret_cast< ::_FILETIME* >(lpUserTime));
54}
55
56}
57}

Callers 2

nowMethod · 0.85
get_process_timesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected