diff options
Diffstat (limited to 'Sluift/sluift.h')
-rw-r--r-- | Sluift/sluift.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Sluift/sluift.h b/Sluift/sluift.h index 27b4eab..4e0f5ee 100644 --- a/Sluift/sluift.h +++ b/Sluift/sluift.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 Remko Tronçon + * Copyright (c) 2011-2013 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ @@ -9,9 +9,16 @@ #if defined(SLUIFT_BUILD_DLL) #define SLUIFT_API __declspec(dllexport) #else -#define SLUIFT_API extern +#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); |