#ifndef LUAXML_LIB_H #define LUAXML_LIB_H #ifndef LUAXML_DEBUG # define LUAXML_DEBUG 0 /* set to 1 to enable debugging output */ #endif #ifdef __cplusplus extern "C" { #endif #include #include #include #if defined __WIN32__ || defined WIN32 # include # define _EXPORT __declspec(dllexport) #else # define _EXPORT #endif int _EXPORT luaopen_LuaXML_lib (lua_State* L); #ifdef __cplusplus } // extern "C" #endif #endif // LUAXML_LIB_H