| 3 | namespace Process |
| 4 | { |
| 5 | CProcess::CProcess() |
| 6 | { |
| 7 | this->ProcessName = ""; |
| 8 | this->hProcess = GetCurrentProcess(); |
| 9 | } |
| 10 | CProcess::CProcess(DWORD dwProcessId, DWORD dwDesiredAccess) |
| 11 | { |
| 12 | this->ProcessName = ""; |
nothing calls this directly
no outgoing calls
no test coverage detected