From 8e1c188d408f3e041c23ff2300dfa94b584c7b3c Mon Sep 17 00:00:00 2001 From: Mathieu Rene Date: Wed, 10 Jun 2009 05:08:53 +0000 Subject: [PATCH] Add SWITCH_XML_SECTION_MAX to switch_xml_section_enum_t git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13745 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_types.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/include/switch_types.h b/src/include/switch_types.h index 9a818c8eb2..ecda252f90 100644 --- a/src/include/switch_types.h +++ b/src/include/switch_types.h @@ -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;