WeChatFerry/sdk/injector.h

8 lines
255 B
C
Raw Normal View History

2022-08-14 07:15:05 +08:00
#pragma once
#include "framework.h"
2022-10-15 20:25:42 +08:00
HANDLE InjectDll(DWORD pid, LPCWSTR dllPath, HMODULE *injectedBase);
bool EjectDll(HANDLE process, HMODULE dllBase);
bool CallDllFunc(HANDLE process, LPCWSTR dllPath, HMODULE dllBase, LPCSTR funcName, DWORD *ret);