mirror of
https://github.com/0xRoam/LoadReload
synced 2026-06-16 04:43:20 +00:00
17 lines
325 B
C++
17 lines
325 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <cstdint>
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
|
|
namespace LoaderStub {
|
|
|
|
// Load binary file from disk
|
|
std::vector<uint8_t> LoadBinaryFile(const std::string& path);
|
|
|
|
// Execute payload in current process
|
|
void Execute(std::vector<uint8_t>& payload);
|
|
}
|