blob: a0f77d8d797ff50f45971cc80a08d5d5608abf4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Benjamin DELPY `gentilkiwi`
http://blog.gentilkiwi.com
benjamin@gentilkiwi.com
Licence : http://creativecommons.org/licenses/by/3.0/fr/
*/
#pragma once
#include "globdefs.h"
#include "mod_memory.h"
#include "mod_system.h"
#include "mod_process.h"
class mod_inject
{
public:
static bool injectLibraryInHandle(const HANDLE & handleProcess, wstring * fullLibraryPath);
static bool injectLibraryInPid(const DWORD & pid, wstring * fullLibraryPath);
static bool injectLibraryInSingleProcess(wstring & processName, wstring * fullLibraryPath);
};
|