WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
DynamicLibraries.h
1#pragma once
2
3#include <filesystem>
4
5#ifdef __LINUX__
6using HMODULE = void*;
7#else
8#include <Windows.h>
9#endif
10
11namespace framework
12{
13 namespace utility
14 {
15 std::string makePathToDynamicLibrary(const std::filesystem::path& pathToSource);
16 }
17}