X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/5b760b6cac721c6abd036c0689e713b5a7c700c5..45b4ac09c9ef89b9e5892156e69eda860b29381e:/client/scripting.h?ds=inline

diff --git a/client/scripting.h b/client/scripting.h
index 58e5359e..1d35d78a 100644
--- a/client/scripting.h
+++ b/client/scripting.h
@@ -12,12 +12,16 @@
 
 #include <lua.h>
 
+#define LUA_LIBRARIES_DIRECTORY 	"lualibs/"
+#define LUA_SCRIPTS_DIRECTORY 		"scripts/"
+#define LUA_LIBRARIES_WILDCARD 		"?.lua"
+
 /**
  * @brief set_libraries loads the core components of pm3 into the 'pm3'
  *  namespace within the given lua_State
  * @param L
  */
 
-void set_pm3_libraries(lua_State *L);
+int set_pm3_libraries(lua_State *L);
 
 #endif