| 16 | namespace debugviewpp { |
| 17 | |
| 18 | struct InternalProcessProperties |
| 19 | { |
| 20 | InternalProcessProperties(); |
| 21 | InternalProcessProperties(DWORD pid, const std::wstring& name, COLORREF color); |
| 22 | |
| 23 | DWORD pid; // system processId |
| 24 | std::wstring name; |
| 25 | COLORREF color; |
| 26 | }; |
| 27 | |
| 28 | struct ProcessProperties |
| 29 | { |
no outgoing calls
no test coverage detected