Displaying 1 result from an estimated 1 matches for "confflag_starmenu".
2003 Dec 03
0
Implement missing features in Meetme application
...9;s' -- send user to admin/user menu if '*' is received
Line 438
-------- app_meetme.c -----------------------------------------------------------------------------
else if ((f->frametype == AST_FRAME_DTMF) && (f->subclass == '*') && (confflags & CONFFLAG_STARMENU)) {
if ((confflags & CONFFLAG_ADMIN)) {
/* Do admin stuff here */
} else {
/* Do user menu here */
}
----------------------------------------------------------------------------------------------------
I guess...