rainmeter-studio/Library/lua/LuaPush.h
mapeki c516bf8310 Added Lua Stuff
There are a few changes to the core Rainmeter code.
2010-12-12 17:08:36 +00:00

21 lines
569 B
C++

#ifndef LUA_PUSH_H
#define LUA_PUSH_H
#include <stdio.h>
#include "string"
#include "lua.hpp"
#include "tolua++.h"
std::wstring to_wstring (lua_State* L, int arg, void* type);
void push_wstring (lua_State* L, void* value, const char* type);
int is_wstring (lua_State* L, int lo, const char* type, int def, tolua_Error* err);
void push_wchar (lua_State* L, void* value, const char* type);
const wchar_t* to_wchar (lua_State* L, int arg, void* type);
int is_wchar (lua_State* L, int lo, const char* type, int def, tolua_Error* err);
#endif