mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
using libxml2. (Bug #538, thanks, Bardioc!) git-svn-id: svn://svn.bearnip.com/ldmud/trunk@2585 56160b6e-f8f8-0310-bd54-bccebfe6a2f2
10 lines
313 B
C
10 lines
313 B
C
#ifndef XML_H__
|
|
#define XML_H__ 1
|
|
|
|
#define XML_TAG_NAME 0 /* Name of the current tag */
|
|
#define XML_TAG_ATTRIBUTES 1 /* Atttributes of the current tag */
|
|
#define XML_TAG_CONTENTS 2 /* Contents of the current tag */
|
|
|
|
#define XML_TAG_SIZE 3
|
|
|
|
#endif
|