Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ModuleLoading.hpp
1#pragma once
2
3#include <string>
4
5#if defined(_WIN32)
6#include <Windows.h>
7#elif defined(__linux__)
8#include <dlfcn.h>
9#endif
10
11namespace Grindstone::Utilities::Modules {
12#if defined(_WIN32)
13 using Handle = HMODULE;
14#elif defined(__linux__)
15 using Handle = void*;
16#endif
17
18 Grindstone::Utilities::Modules::Handle Load(std::string name);
19 void Unload(Grindstone::Utilities::Modules::Handle handle);
20
21 void* GetFunction(Grindstone::Utilities::Modules::Handle handle, const char *name);
22}