blob: b82e1c4f172f7e96dbd1754c5cf55f4c8edad87e (
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
|
/*
* Copyright (c) 2011-2013 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
#if defined(SLUIFT_BUILD_DLL)
#define SLUIFT_API __declspec(dllexport)
#elif __GNUC__ >= 4
#define SLUIFT_API __attribute__((visibility("default")))
#else
#define SLUIFT_API
#endif
#if defined(__cplusplus)
#include <lua.hpp>
#else
#include <lua.h>
#endif
#if defined(__cplusplus)
extern "C"
#endif
SLUIFT_API int (luaopen_sluift)(lua_State *L);
|