summaryrefslogtreecommitdiff
path: root/menuselect/menuselect.h
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2016-07-24 17:27:26 -0600
committerGeorge Joseph <gjoseph@digium.com>2016-08-01 11:46:36 -0500
commit56a07fbab9bdabc562d88706067ce53f7025a660 (patch)
treea86230f99f4d4feff2269d79ee45841eeb1f1a5d /menuselect/menuselect.h
parent948a9b615ff9bb6c9233e3efdf94f9224c605c98 (diff)
menuselect: Various menuselect enhancements
* Add 'external' as a support level. * Add ability for module directories to add entries to the menu by adding members to the <module_prefix>/<module_prefix>.xml file. * Expand the description field to 3 lines in the ncurses implementation. * Allow the description field to wrap in the newt implementation. * Add description field to the gtk implementation. Change-Id: I7f9600a1984a42ce0696db574c1051bc9ad7c808 (cherry picked from commit 90f445729d5d86050d9d379485ff0a99f4a006c1)
Diffstat (limited to 'menuselect/menuselect.h')
-rw-r--r--menuselect/menuselect.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/menuselect/menuselect.h b/menuselect/menuselect.h
index 112f1c88c..7b3fe2656 100644
--- a/menuselect/menuselect.h
+++ b/menuselect/menuselect.h
@@ -105,7 +105,8 @@ enum support_level_values {
SUPPORT_EXTENDED = 1,
SUPPORT_DEPRECATED = 2,
SUPPORT_UNSPECIFIED = 3,
- SUPPORT_COUNT = 4, /* Keep this item at the end of the list. Tracks total number of support levels. */
+ SUPPORT_EXTERNAL = 4,
+ SUPPORT_COUNT = 5, /* Keep this item at the end of the list. Tracks total number of support levels. */
};
AST_LIST_HEAD_NOLOCK(support_level_bucket, member);