summaryrefslogtreecommitdiff
path: root/plugins/MirLua/Modules/m_variables
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirLua/Modules/m_variables')
-rw-r--r--plugins/MirLua/Modules/m_variables/m_variables.vcxproj28
-rw-r--r--plugins/MirLua/Modules/m_variables/src/main.cpp32
-rw-r--r--plugins/MirLua/Modules/m_variables/src/stdafx.cxx1
-rw-r--r--plugins/MirLua/Modules/m_variables/src/stdafx.h14
4 files changed, 75 insertions, 0 deletions
diff --git a/plugins/MirLua/Modules/m_variables/m_variables.vcxproj b/plugins/MirLua/Modules/m_variables/m_variables.vcxproj
new file mode 100644
index 0000000000..fedbf4a66c
--- /dev/null
+++ b/plugins/MirLua/Modules/m_variables/m_variables.vcxproj
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|x64">
+ <Configuration>Debug</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|x64">
+ <Configuration>Release</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <ProjectName>m_variables</ProjectName>
+ <ProjectGuid>{E604CD58-4579-4F69-9D6A-2605FD7CF716}</ProjectGuid>
+ </PropertyGroup>
+ <ImportGroup Label="PropertySheets">
+ <Import Project="$(ProjectDir)..\module.props" />
+ </ImportGroup>
+</Project>
diff --git a/plugins/MirLua/Modules/m_variables/src/main.cpp b/plugins/MirLua/Modules/m_variables/src/main.cpp
new file mode 100644
index 0000000000..1fb6dd29bb
--- /dev/null
+++ b/plugins/MirLua/Modules/m_variables/src/main.cpp
@@ -0,0 +1,32 @@
+#include "stdafx.h"
+
+static int lua_Parse(lua_State *L)
+{
+ if (!ServiceExists(MS_VARS_FORMATSTRING))
+ {
+ lua_pushvalue(L, 1);
+ return 1;
+ }
+
+ ptrT format(mir_utf8decodeT(luaL_checkstring(L, 1)));
+ MCONTACT hContact = lua_tointeger(L, 2);
+
+ TCHAR *res = variables_parse_ex(format, NULL, hContact, NULL, 0);
+ lua_pushstring(L, T2Utf(res));
+
+ return 1;
+}
+
+static luaL_Reg variablesApi[] =
+{
+ { "Parse", lua_Parse },
+
+ { NULL, NULL }
+};
+
+LUAMOD_API int luaopen_m_variables(lua_State *L)
+{
+ luaL_newlib(L, variablesApi);
+
+ return 1;
+}
diff --git a/plugins/MirLua/Modules/m_variables/src/stdafx.cxx b/plugins/MirLua/Modules/m_variables/src/stdafx.cxx
new file mode 100644
index 0000000000..fd4f341c7b
--- /dev/null
+++ b/plugins/MirLua/Modules/m_variables/src/stdafx.cxx
@@ -0,0 +1 @@
+#include "stdafx.h"
diff --git a/plugins/MirLua/Modules/m_variables/src/stdafx.h b/plugins/MirLua/Modules/m_variables/src/stdafx.h
new file mode 100644
index 0000000000..0293856dbd
--- /dev/null
+++ b/plugins/MirLua/Modules/m_variables/src/stdafx.h
@@ -0,0 +1,14 @@
+#ifndef _COMMON_H_
+#define _COMMON_H_
+
+#include <windows.h>
+
+#define VARIABLES_NOHELPER
+
+#include <lua.hpp>
+
+#include <m_core.h>
+#include <m_utils.h>
+#include <m_variables.h>
+
+#endif //_COMMON_H_ \ No newline at end of file