- Removed GetValue() (which has never worked) and deprecated GetStringValue(). The measure value should be returned on Update() now.
- Some related tweaks and cosmetic changes
This commit is contained in:
Birunthan Mohanathas
2011-07-06 10:21:18 +00:00
parent 4389edb8c1
commit fa67b07a62
7 changed files with 363 additions and 319 deletions

View File

@ -27,19 +27,16 @@ public:
static void Init();
static void CleanUp();
static lua_State* GetState() { return c_pState; }
static lua_State* GetState() { return c_State; }
static void ReportErrors(lua_State * L);
static void ReportErrors(lua_State* L);
static void LuaLog(int nLevel, const char* format, ... );
protected:
static int c_RefCount;
static lua_State* c_pState;
static lua_State* c_State;
private:
static void RegisterTypes(lua_State* L);
static void RegisterGlobal(lua_State* L);
static void RegisterRainmeter(lua_State* L);
static void RegisterGroup(lua_State* L);