MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #ifndef XML_H__ |
2 | #define XML_H__ 1 | ||||
3 | |||||
4 | #define XML_TAG_NAME 0 /* Name of the current tag */ | ||||
5 | #define XML_TAG_ATTRIBUTES 1 /* Atttributes of the current tag */ | ||||
6 | #define XML_TAG_CONTENTS 2 /* Contents of the current tag */ | ||||
7 | |||||
8 | #define XML_TAG_SIZE 3 | ||||
9 | |||||
10 | #endif |