mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Fixed some Lua related issues.
Removed some internal functions from exposed functions for Lua. Code cleanup and optimizing for VC2010.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
** Lua binding: group
|
||||
** Lua binding: rainmeter_ext
|
||||
** Generated automatically by tolua++-1.0.92 on 11/22/10 21:20:13.
|
||||
*/
|
||||
|
||||
@ -11,10 +11,12 @@
|
||||
#include "string.h"
|
||||
|
||||
#include "tolua++.h"
|
||||
#include "../LuaManager.h"
|
||||
|
||||
/* Exported function */
|
||||
TOLUA_API int luaopen_rainmeter_ext (lua_State* tolua_S);
|
||||
|
||||
#include "../LuaManager.h"
|
||||
|
||||
#include "../../MeterBar.h"
|
||||
#include "../../MeterBitmap.h"
|
||||
#include "../../MeterButton.h"
|
||||
@ -99,7 +101,7 @@ static int staticLuaLog(lua_State* tolua_S)
|
||||
/* list of functions in the module */
|
||||
static const luaL_reg rainmeter_ext_funcs[] =
|
||||
{
|
||||
{ "LuaLog", staticLuaLog},
|
||||
{ "LuaLog", staticLuaLog },
|
||||
{ "MeterBar", AsMeterBar },
|
||||
{ "MeterBitmap", AsMeterBitmap },
|
||||
{ "MeterButton", AsMeterButton },
|
||||
|
Reference in New Issue
Block a user