| 244 | } |
| 245 | |
| 246 | extern "C" BEACON_IMPEX void BeaconCleanupProcess(PROCESS_INFORMATION* pInfo) { |
| 247 | (void)CloseHandle(pInfo->hThread); |
| 248 | (void)CloseHandle(pInfo->hProcess); |
| 249 | return; |
| 250 | } |
| 251 | |
| 252 | extern "C" BEACON_IMPEX BOOL toWideChar(char* src, wchar_t* dst, int max) { |
| 253 | if (max < sizeof(wchar_t)) |
nothing calls this directly
no outgoing calls
no test coverage detected