You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/win32/dll.cpp

23 lines
449 B
C++

#include "dll.hpp"
#include <llarp/util/logging.hpp>
#include <llarp/util/str.hpp>
namespace llarp::win32
{
namespace
{
auto cat = log::Cat("win32-dll");
}
DLL::DLL(std::string dll) : m_Handle{LoadLibraryA(dll.c_str())}
{
if (not m_Handle)
throw win32::error{fmt::format("failed to load '{}'", dll)};
log::info(cat, "loaded '{}'", dll);
}
DLL::~DLL()
{
FreeLibrary(m_Handle);
}
} // namespace llarp::win32