mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Script: Fixed that Unicode characters were not correctly displayed
- About Log: 20 last log items are now displayed on launch - LOG_DEBUG messages are ignored from plugins only when not in Debug mode
This commit is contained in:
@ -19,7 +19,6 @@
|
||||
|
||||
#include "lua.hpp"
|
||||
#include "tolua++.h"
|
||||
#include "LuaPush.h"
|
||||
|
||||
class LuaManager
|
||||
{
|
||||
@ -32,6 +31,9 @@ public:
|
||||
static void ReportErrors(lua_State* L);
|
||||
static void LuaLog(int nLevel, const char* format, ... );
|
||||
|
||||
static void PushWide(lua_State* L, const WCHAR* str);
|
||||
static std::wstring ToWide(lua_State* L, int narg);
|
||||
|
||||
protected:
|
||||
static int c_RefCount;
|
||||
static lua_State* c_State;
|
||||
|
Reference in New Issue
Block a user