]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Add SWITCH_XML_SECTION_MAX to switch_xml_section_enum_t
authorMathieu Rene <mrene@avgs.ca>
Wed, 10 Jun 2009 05:08:53 +0000 (05:08 +0000)
committerMathieu Rene <mrene@avgs.ca>
Wed, 10 Jun 2009 05:08:53 +0000 (05:08 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13745 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/include/switch_types.h

index 9a818c8eb2988650b79392f1ae9ab3b66bcdc9e4..ecda252f90d0d14d55962e8902c2c3b0a954df89 100644 (file)
@@ -406,7 +406,10 @@ typedef enum {
        SWITCH_XML_SECTION_CONFIG = (1 << 0),
        SWITCH_XML_SECTION_DIRECTORY = (1 << 1),
        SWITCH_XML_SECTION_DIALPLAN = (1 << 2),
-       SWITCH_XML_SECTION_PHRASES = (1 << 3)
+       SWITCH_XML_SECTION_PHRASES = (1 << 3),
+       
+       /* Nothing after this line */
+       SWITCH_XML_SECTION_MAX = (1 << 4)
 } switch_xml_section_enum_t;
 typedef uint32_t switch_xml_section_t;