MCPcopy Create free account
hub / github.com/Schnocker/NoEye / Resume

Method Resume

NoEye_Service/CProcess.cpp:108–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106 }
107
108 bool CProcess::Resume()
109 {
110 typedef NTSTATUS(WINAPI*_NtResumeProcess)(HANDLE);
111 static _NtResumeProcess __NtResumeProcess = reinterpret_cast<_NtResumeProcess>(GetProcAddress(GetModuleHandleA("ntdll.dll"), "NtResumeProcess"));
112 if (!__NtResumeProcess)
113 return false;
114 __NtResumeProcess(this->hProcess);
115 return true;
116 }
117
118 bool CProcess::Kill()
119 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected