aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/pbx.h
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-17 21:39:36 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-17 21:39:36 +0000
commite69d1ded060265a1cb52d7a691acbe84f0f03df5 (patch)
tree7d7227d3147c81973af4e6503672c07fc6568db9 /include/asterisk/pbx.h
parent6b15c9e645cfee77e1e176e7656e647ea1c01e22 (diff)
move the definition of the mappings between extension states and their text
representation into pbx.c so that every file that includes pbx.h does not unnecessarily get a copy of it git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13357 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/pbx.h')
-rw-r--r--include/asterisk/pbx.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h
index 83997b48d..9fa5655a0 100644
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -62,18 +62,6 @@ enum ast_extension_states {
};
-static const struct cfextension_states {
- int extension_state;
- const char * const text;
-} extension_states[] = {
- { AST_EXTENSION_NOT_INUSE, "Idle" },
- { AST_EXTENSION_INUSE, "InUse" },
- { AST_EXTENSION_BUSY, "Busy" },
- { AST_EXTENSION_UNAVAILABLE, "Unavailable" },
- { AST_EXTENSION_RINGING, "Ringing" },
- { AST_EXTENSION_INUSE | AST_EXTENSION_RINGING, "InUse&Ringing" }
-};
-
struct ast_context;
struct ast_exten;
struct ast_include;