mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
685bae34e5
If compilation fails, rebuild the whole solution as Visual Studio struggles with the not so complex project dependencies. ATI users still need to install the Stream SDK as it's the only way to have an OpenCL driver. NVidia users just have to install a recent driver (version 197 is tested and working). git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5808 8ced0084-cf51-0410-be5f-012b33b47a6e
10 lines
159 B
C
10 lines
159 B
C
|
|
#ifndef __DYNAMIC_LIBRARY_H
|
|
#define __DYNAMIC_LIBRARY_H
|
|
|
|
int loadLib(const char *filename);
|
|
int unloadLib();
|
|
void *getFunction(const char *funcname);
|
|
|
|
#endif
|