11 lines
339 B
C
11 lines
339 B
C
#ifndef TARGET_PROCESS_H
|
|||
|
|
#define TARGET_PROCESS_H
|
||
|
|
|
||
|
|
#include "types.h"
|
||
|
|
|
||
|
|
bool target_create_suspended(TargetProcess* target, const wchar_t* exe_path);
|
||
|
|
void target_terminate(TargetProcess* target);
|
||
|
|
void target_cleanup(TargetProcess* target);
|
||
|
|
bool target_kill_network_service(const wchar_t* process_name);
|
||
|
|
|
||
|
|
#endif // TARGET_PROCESS_H
|