Cogs.Core
Module.cpp
1#include "Module.h"
2
9void* Cogs::Module::getProcAddress(const char* procName) {
10 return handle ? getProcAddress(handle, procName) : nullptr;
11}