lsnes/include/core/loadlib.hpp
Ilari Liusvaara fab8d8f4e3 Library loading support
Support loading shared objects and such at runtime.
2012-02-12 13:16:12 +02:00

10 lines
No EOL
223 B
C++

#ifndef _loadlib__hpp__included__
#define _loadlib__hpp__included__
#include <string>
void load_library(const std::string& filename);
extern const bool load_library_supported;
extern const char* library_is_called;
#endif