Tue, Apr 14, 2020 9:02:29 PM
This commit is contained in:
17
client/efi-mapper/kdmapper/utils.hpp
Normal file
17
client/efi-mapper/kdmapper/utils.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
#include <Windows.h>
|
||||
#include <TlHelp32.h>
|
||||
#include <stdint.h>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
#include "nt.hpp"
|
||||
|
||||
namespace utils
|
||||
{
|
||||
bool ReadFileToMemory(const std::string& file_path, std::vector<uint8_t>* out_buffer);
|
||||
bool CreateFileFromMemory(const std::string& desired_file_path, const char* address, size_t size);
|
||||
uint64_t GetKernelModuleAddress(const std::string& module_name);
|
||||
}
|
||||
Reference in New Issue
Block a user