Cube-World-Mod-Launcher/CubeModLoader/DLL.cpp

17 lines
283 B
C++
Raw Normal View History

2019-09-15 03:24:12 +08:00
#include "DLL.h"
#include <iostream>
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
}