mirror of
https://github.com/0xRoam/LoadReload
synced 2026-06-16 04:43:20 +00:00
10 lines
244 B
C++
10 lines
244 B
C++
#pragma once
|
|
#include <windows.h>
|
|
#include <vector>
|
|
#include <cstdint>
|
|
#include <iostream>
|
|
|
|
namespace Module_Stomping {
|
|
bool PatchSectionAndExecute(LPCWSTR dllPath, const std::vector<uint8_t>& shellcode);
|
|
|
|
} // namespace Module_Stomping
|