blob: c596d6c0291f5eea0b7d43d2ef61ae7ba446d3f0 (
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
33
34
35
36
37
38
39
40
41
42
|
#ifndef _COMMON_H_
#define _COMMON_H_
#include <windows.h>
#include <newpluginapi.h>
#include <m_core.h>
#include <m_utils.h>
#include <m_langpack.h>
#include <m_folders.h>
#include <m_clist.h>
extern "C"
{
#include "lua\lua.h"
#include "lua\lualib.h"
#include "lua\lauxlib.h"
}
#include "version.h"
#include "resource.h"
class CMLua;
#include "mlua.h"
#define MODULE "MirLua"
extern HINSTANCE g_hInstance;
#ifdef _UNICODE
#define COMMON_SCRIPTS_PATHT MIRANDA_PATHW L"\\Scripts"
#define CUSTOM_SCRIPTS_PATHT MIRANDA_USERDATAW L"\\Scripts"
#else
#define COMMON_SCRIPTS_PATHT MIRANDA_PATH "\\Scripts"
#define CUSTOM_SCRIPTS_PATHT MIRANDA_USERDATA "\\Scripts"
#endif
#define LUA_CLISTLIBNAME "m_clist"
int luaopen_m_clist(lua_State *L);
#endif //_COMMON_H_
|