structural changes

This commit is contained in:
project-bo4
2023-11-10 13:52:20 -08:00
parent 55553a4099
commit e584075243
74 changed files with 604 additions and 411 deletions

View File

@ -79,7 +79,7 @@ namespace exception
std::string create_minidump(const LPEXCEPTION_POINTERS exceptioninfo)
{
const utils::nt::handle file_handle = write_dump_to_temp_file(exceptioninfo);
const utilities::nt::handle file_handle = write_dump_to_temp_file(exceptioninfo);
return read_file(file_handle);
}
}

View File

@ -1,6 +1,6 @@
#pragma once
#include "../utils/nt.hpp"
#include "../utilities/nt.hpp"
namespace exception
{