blob: dcd2a7e7739d60eafd63dbfc4aa55f5e47382129 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 | #include "stdafx.h"
static int lua_Parse(lua_State *L)
{
	if (!ServiceExists(MS_VARS_FORMATSTRING))
	{
		lua_pushvalue(L, 1);
		return 1;
	}
	ptrW format(mir_utf8decodeW(luaL_checkstring(L, 1)));
	MCONTACT hContact = lua_tointeger(L, 2);
	wchar_t *res = variables_parse_ex(format, nullptr, hContact, nullptr, 0);
	lua_pushstring(L, T2Utf(res));
	return 1;
}
static luaL_Reg variablesApi[] =
{
	{ "Parse", lua_Parse },
	{ nullptr, nullptr }
};
extern "C" LUAMOD_API int luaopen_m_variables(lua_State *L)
{
	luaL_newlib(L, variablesApi);
	return 1;
}
 |