Lua: Fix type confusion between signed and unsigned
[lsnes.git] / include / core / loadlib.hpp
bloba43a4677d6e824f2207e22fa30a64a634be41a5d
1 #ifndef _loadlib__hpp__included__
2 #define _loadlib__hpp__included__
4 #include "library/loadlib.hpp"
6 void handle_post_loadlibrary();
7 void autoload_libraries(void(*on_error)(const std::string& libname, const std::string& err, bool system) = NULL);
8 void with_loaded_library(const loadlib::module& l);
9 bool with_unloaded_library(loadlib::module& l);
10 std::string loadlib_debug_get_user_library_dir();
11 std::string loadlib_debug_get_system_library_dir();
14 #endif