Skip to content

Commit

Permalink
Updated readme and library header
Browse files Browse the repository at this point in the history
  • Loading branch information
Broihon committed Dec 18, 2021
1 parent e60c910 commit a290d6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Injection.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ enum class LAUNCH_METHOD
LM_HijackThread,
LM_SetWindowsHookEx,
LM_QueueUserAPC,
LM_KernelCallback
LM_KernelCallback,
LM_FakeVEH
};

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

using f_GetDownloadProgress = float(__stdcall *)(bool bWoW64);
using f_GetDownloadProgressEx = float(__stdcall *)(int index, bool bWow64);
using f_StartDownload = void(__stdcall *)();
using f_InterruptDownload = void(__stdcall *)();

using f_raw_print_callback = void(__stdcall *)(const char * szText);
using f_SetRawPrintCallback = DWORD(__stdcall *)(f_raw_print_callback callback);
using f_SetRawPrintCallback = DWORD(__stdcall *)(f_raw_print_callback callback);
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Session separation can be bypassed with all methods.
- SetWindowsHookEx
- QueueUserAPC
- KernelCallback
- FakeVEH

### Manual mapping features:

Expand Down

0 comments on commit a290d6d

Please sign in to comment.