blob: 82b3a40d9ead4617e5cc62382c463bbe47d5e760 (
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
|
#include "stdafx.h"
static int lua_ShellExecute(lua_State *L)
{
ptrT command(mir_utf8decodeT(lua_tostring(L, 1)));
ptrT file(mir_utf8decodeT(lua_tostring(L, 2)));
ptrT args(mir_utf8decodeT(lua_tostring(L, 3)));
int flags = lua_tointeger(L, 4);
::ShellExecute(NULL, command, file, args, NULL, flags);
return 0;
}
static luaL_Reg winApi[] =
{
{ "ShellExecute", lua_ShellExecute },
{ NULL, NULL }
};
LUAMOD_API int luaopen_m_windows(lua_State *L)
{
luaL_newlib(L, winApi);
return 1;
}
|