#include "DLL.h" #include DLL::DLL(std::string fileName) { this->fileName = fileName; this->handle = nullptr; } HMODULE DLL::Load() { this->handle = LoadLibraryA(this->fileName.c_str()); return this->handle; } DLL::~DLL() { //dtor }