1
0
cuberite-2a/source/LuaExpat/lxplib.h
madmaxoft 48cec90c3f Added Expat and LuaExpat, XML parsing now available in the API.
FS #336
Windows version only, Linux to be fixed soon.

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1374 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-04-09 13:43:24 +00:00

25 lines
799 B
C

/*
** See Copyright Notice in license.html
*/
#define ParserType "Expat"
#define StartCdataKey "StartCdataSection"
#define EndCdataKey "EndCdataSection"
#define CharDataKey "CharacterData"
#define CommentKey "Comment"
#define DefaultKey "Default"
#define DefaultExpandKey "DefaultExpand"
#define StartElementKey "StartElement"
#define EndElementKey "EndElement"
#define ExternalEntityKey "ExternalEntityRef"
#define StartNamespaceDeclKey "StartNamespaceDecl"
#define EndNamespaceDeclKey "EndNamespaceDecl"
#define NotationDeclKey "NotationDecl"
#define NotStandaloneKey "NotStandalone"
#define ProcessingInstructionKey "ProcessingInstruction"
#define UnparsedEntityDeclKey "UnparsedEntityDecl"
#define StartDoctypeDeclKey "StartDoctypeDecl"
int luaopen_lxp (lua_State *L);