blob: 9e4ed4ccf1edcf4ae7afd3dc8745e69fd73768a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __LUA_PLUGIN_H__
#define __LUA_PLUGIN_H__
#include <BLua.h>
#include <Exceptions.h>
#include <Handle.h>
void LuaLoadPlugin(const String & fname, const String & searchpath, Lua * L) throw (GeneralException);
void LuaLoadPlugin(Handle * h, Lua * L) throw (GeneralException);
#endif
|