19 lines
543 B
C++
19 lines
543 B
C++
#pragma once
|
|
#include <Windows.h>
|
|
#include <stdint.h>
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <filesystem>
|
|
|
|
#include "portable_executable.hpp"
|
|
#include "utils.hpp"
|
|
#include "nt.hpp"
|
|
#include "intel_driver.hpp"
|
|
|
|
namespace kdmapper
|
|
{
|
|
uint64_t MapDriver(HANDLE iqvw64e_device_handle, const std::string& driver_path);
|
|
void RelocateImageByDelta(portable_executable::vec_relocs relocs, const uint64_t delta);
|
|
bool ResolveImports(HANDLE iqvw64e_device_handle, portable_executable::vec_imports imports);
|
|
} |