comparison libpurple/xmlnode.h @ 32381:5876584828e8

Please correct me if I'm wrong, but I don't think we gain anything from declaring _PurpleBlah versions of enums if we do a typedef at the same time. I don't think it's necessary. Fixes #4475
author Mark Doliner <mark@kingant.net>
date Mon, 22 Aug 2011 07:20:49 +0000
parents 77cd42f08ba1
children 67addaf8677f
comparison
equal deleted inserted replaced
32380:4f2d99bcb195 32381:5876584828e8
33 #endif 33 #endif
34 34
35 /** 35 /**
36 * The valid types for an xmlnode 36 * The valid types for an xmlnode
37 */ 37 */
38 typedef enum _XMLNodeType 38 typedef enum
39 { 39 {
40 XMLNODE_TYPE_TAG, /**< Just a tag */ 40 XMLNODE_TYPE_TAG, /**< Just a tag */
41 XMLNODE_TYPE_ATTRIB, /**< Has attributes */ 41 XMLNODE_TYPE_ATTRIB, /**< Has attributes */
42 XMLNODE_TYPE_DATA /**< Has data */ 42 XMLNODE_TYPE_DATA /**< Has data */
43 } XMLNodeType; 43 } XMLNodeType;