8 lines
259 B
C
8 lines
259 B
C
|
#pragma once
|
||
|
|
||
|
typedef void * DynLibHandle;
|
||
|
|
||
|
DynLibHandle DynamicLibraryOpen(const char * LibraryPath, bool ShowErrors = true);
|
||
|
void DynamicLibraryClose(DynLibHandle LibHandle);
|
||
|
void * DynamicLibraryGetProc(DynLibHandle LibHandle, const char * ProcedureName);
|