| 39 | namespace winapi { |
| 40 | |
| 41 | BOOST_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 | } |
no outgoing calls
no test coverage detected