Skip to content

Commit a290d6d

Browse files
committed
Updated readme and library header
1 parent e60c910 commit a290d6d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Injection.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ enum class LAUNCH_METHOD
5959
LM_HijackThread,
6060
LM_SetWindowsHookEx,
6161
LM_QueueUserAPC,
62-
LM_KernelCallback
62+
LM_KernelCallback,
63+
LM_FakeVEH
6364
};
6465

6566
//ansi version of the info structure:
@@ -154,9 +155,9 @@ using f_GetVersionW = HRESULT(__stdcall *)(wchar_t * out, size_t cb_size);
154155
using f_GetSymbolState = DWORD(__stdcall *)();
155156
using f_GetImportState = DWORD(__stdcall *)();
156157

157-
using f_GetDownloadProgress = float(__stdcall *)(bool bWoW64);
158+
using f_GetDownloadProgressEx = float(__stdcall *)(int index, bool bWow64);
158159
using f_StartDownload = void(__stdcall *)();
159160
using f_InterruptDownload = void(__stdcall *)();
160161

161162
using f_raw_print_callback = void(__stdcall *)(const char * szText);
162-
using f_SetRawPrintCallback = DWORD(__stdcall *)(f_raw_print_callback callback);
163+
using f_SetRawPrintCallback = DWORD(__stdcall *)(f_raw_print_callback callback);

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Session separation can be bypassed with all methods.
2121
- SetWindowsHookEx
2222
- QueueUserAPC
2323
- KernelCallback
24+
- FakeVEH
2425

2526
### Manual mapping features:
2627

0 commit comments

Comments
 (0)