| 15 | public: |
| 16 | PPLProcessCreator() : m_hProcess(nullptr), m_hThread(nullptr) {} |
| 17 | ~PPLProcessCreator() |
| 18 | { |
| 19 | if (m_hProcess) CloseHandle(m_hProcess); |
| 20 | if (m_hThread) CloseHandle(m_hThread); |
| 21 | } |
| 22 | |
| 23 | DWORD GetPPLProtectionLevel(DWORD processId); |
| 24 | std::wstring GetPPLProtectionLevelName(DWORD protectionLevel); |
nothing calls this directly
no outgoing calls
no test coverage detected