summaryrefslogtreecommitdiffstats
blob: 4ffe3bf25a3efc5651d2ccac32821982d7d778eb (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 Isode Limited.
 * All rights reserved.
 * See the COPYING file 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);