Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
LuaXML_lib.h
Go to the documentation of this file.
1#ifndef LUAXML_LIB_H
2#define LUAXML_LIB_H
3
4#ifndef LUAXML_DEBUG
5# define LUAXML_DEBUG 0 /* set to 1 to enable debugging output */
6#endif
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#include <lua.h>
13#include <lauxlib.h>
14#include <lualib.h>
15
16#if defined __WIN32__ || defined WIN32
17# include <windows.h>
18# define _EXPORT __declspec(dllexport)
19#else
20# define _EXPORT
21#endif
22
24
25#ifdef __cplusplus
26} // extern "C"
27#endif
28
29#endif // LUAXML_LIB_H
int _EXPORT luaopen_LuaXML_lib(lua_State *L)
#define _EXPORT
Definition LuaXML_lib.h:20