Files
first/code/load_library.h
Krzosa Karol f34019efb7 Reorganization
2024-01-06 13:44:50 +01:00

11 lines
247 B
C

#pragma once
typedef void *LIB_Library;
LIB_Library LIB_LoadLibrary(char *str);
void *LIB_LoadSymbol(LIB_Library lib, char *symbol);
bool LIB_UnloadLibrary(LIB_Library lib);
#ifndef LIB_EXPORT
#define LIB_EXPORT __declspec(dllexport)
#endif