inject.h 261 字节
Newer Older
1 2 3 4 5
#pragma once
#include <windows.h>

bool inject_dll(DWORD pid, const char *dll_path);
DWORD find_pid_by_name(const char *name);
Peacoor Zomboss's avatar
Peacoor Zomboss 已提交
6 7
HMODULE find_module_handle_from_pid(DWORD pid, const char *module_name);
bool remove_module(DWORD pid, HMODULE module_handle);