Changeset 2958
Committed by:
mjagdis
Date:
Jun 11 2007 * 13:17 (about 1 year ago)
Affected files:
callweaver/trunk/apps/app_dtmftotext.c (unified diff)
| r2956 | r2958 | |
| 24 | 24 | |
| 25 | 25 | #include "callweaver.h" |
| 26 | 26 | |
| 27 | | CALLWEAVER_FILE_VERSION("$HeadURL", "$Revision$") |
| 27 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$") |
| 28 | 28 | |
| 29 | 29 | #include <stdlib.h> |
| 30 | 30 | #include <stdio.h> |
callweaver/trunk/apps/app_pipe.c (unified diff)
| r2956 | r2958 | |
| 35 | 35 | |
| 36 | 36 | #include "callweaver.h" |
| 37 | 37 | |
| 38 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$") |
| 38 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$") |
| 39 | 39 | |
| 40 | 40 | #include "callweaver/lock.h" |
| 41 | 41 | #include "callweaver/file.h" |
callweaver/trunk/apps/app_setcallerpres.c (unified diff)
| r2956 | r2958 | |
| 33 | 33 | |
| 34 | 34 | #include "callweaver.h" |
| 35 | 35 | |
| 36 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$") |
| 36 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$") |
| 37 | 37 | |
| 38 | 38 | #include "callweaver/lock.h" |
| 39 | 39 | #include "callweaver/file.h" |
callweaver/trunk/apps/app_sms.c (unified diff)
| r2956 | r2958 | |
| 24 | 24 | |
| 25 | 25 | #include "callweaver.h" |
| 26 | 26 | |
| 27 | | CALLWEAVER_FILE_VERSION("$HeadURL", "$Revision$") |
| 27 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$") |
| 28 | 28 | |
| 29 | 29 | #include <stdlib.h> |
| 30 | 30 | #include <stdio.h> |
callweaver/trunk/apps/nconference/app_nconference.c (unified diff)
| r2956 | r2958 | |
| 25 | 25 | #include "member.h" |
| 26 | 26 | #include "cli.h" |
| 27 | 27 | |
| 28 | | CALLWEAVER_FILE_VERSION( __FILE__, "$Revision$"); |
| 28 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$"); |
| 29 | 29 | |
| 30 | 30 | |
| 31 | 31 | /************************************************************ |
callweaver/trunk/apps/nconference/cli.c (unified diff)
| r2956 | r2958 | |
| 26 | 26 | #include "frame.h" |
| 27 | 27 | #include "sounds.h" |
| 28 | 28 | |
| 29 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$"); |
| 29 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$"); |
| 30 | 30 | |
| 31 | 31 | STANDARD_LOCAL_USER ; |
| 32 | 32 | LOCAL_USER_DECL; |
callweaver/trunk/apps/nconference/conference.c (unified diff)
| r2956 | r2958 | |
| 24 | 24 | #include "frame.h" |
| 25 | 25 | #include "sounds.h" |
| 26 | 26 | |
| 27 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$"); |
| 27 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$"); |
| 28 | 28 | |
| 29 | 29 | // mutex for synchronizing access to conflist |
| 30 | 30 | OPBX_MUTEX_DEFINE_EXPORTED(conflist_lock); |
callweaver/trunk/apps/nconference/dtmf.c (unified diff)
| r2956 | r2958 | |
| 24 | 24 | #include "frame.h" |
| 25 | 25 | #include "dtmf.h" |
| 26 | 26 | |
| 27 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$"); |
| 27 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$"); |
| 28 | 28 | |
| 29 | 29 | int parse_dtmf_option( struct opbx_conf_member *member, int subclass ) { |
| 30 | 30 | |
callweaver/trunk/apps/nconference/frame.c (unified diff)
| r2956 | r2958 | |
| 22 | 22 | #include "member.h" |
| 23 | 23 | #include "frame.h" |
| 24 | 24 | |
| 25 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$"); |
| 25 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$"); |
| 26 | 26 | |
| 27 | 27 | int vdebug = 0; |
| 28 | 28 | |
callweaver/trunk/apps/nconference/member.c (unified diff)
| r2956 | r2958 | |
| 26 | 26 | #include "dtmf.h" |
| 27 | 27 | #include "vad.h" |
| 28 | 28 | |
| 29 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$"); |
| 29 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$"); |
| 30 | 30 | |
| 31 | 31 | /* ***************************************************************************** |
| 32 | 32 | MANAGER UTILS |
callweaver/trunk/apps/nconference/sounds.c (unified diff)
| r2956 | r2958 | |
| 24 | 24 | #include "frame.h" |
| 25 | 25 | #include "sounds.h" |
| 26 | 26 | |
| 27 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$"); |
| 27 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$"); |
| 28 | 28 | |
| 29 | 29 | static int conf_play_soundfile( struct opbx_conf_member *member, char * file ) |
| 30 | 30 | { |
callweaver/trunk/apps/nconference/vad.c (unified diff)
| r2956 | r2958 | |
| 22 | 22 | #include "common.h" |
| 23 | 23 | #include "vad.h" |
| 24 | 24 | |
| 25 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$"); |
| 25 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$"); |
| 26 | 26 | |
| 27 | 27 | #define THRESH 200 |
| 28 | 28 | |
callweaver/trunk/cdr/cdr_manager.c (unified diff)
| r2956 | r2958 | |
| 36 | 36 | |
| 37 | 37 | #include "callweaver.h" |
| 38 | 38 | |
| 39 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$") |
| 39 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$") |
| 40 | 40 | |
| 41 | 41 | #include "callweaver/channel.h" |
| 42 | 42 | #include "callweaver/cdr.h" |
callweaver/trunk/corelib/jitterbuffer/generic_jb.c (unified diff)
| r2956 | r2958 | |
| 33 | 33 | |
| 34 | 34 | #include "callweaver.h" |
| 35 | 35 | |
| 36 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$") |
| 36 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$") |
| 37 | 37 | |
| 38 | 38 | #include "callweaver/frame.h" |
| 39 | 39 | #include "callweaver/channel.h" |
callweaver/trunk/funcs/func_config.c (unified diff)
| r2956 | r2958 | |
| 33 | 33 | |
| 34 | 34 | #include "callweaver.h" |
| 35 | 35 | |
| 36 | | CALLWEAVER_FILE_VERSION("$headurl: svn+ssh://svn@svn.callweaver.org/callweaver/trunk/funcs/func_config.c $", "$revision: 2183 $") |
| 36 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$") |
| 37 | 37 | |
| 38 | 38 | #include "callweaver/module.h" |
| 39 | 39 | #include "callweaver/channel.h" |
callweaver/trunk/pbx/pbx_ael.c (unified diff)
| r2956 | r2958 | |
| 24 | 24 | |
| 25 | 25 | #include "callweaver.h" |
| 26 | 26 | |
| 27 | | CALLWEAVER_FILE_VERSION(__FILE__, "$Revision$") |
| 27 | CALLWEAVER_FILE_VERSION("$HeadURL$", "$Revision$") |
| 28 | 28 | |
| 29 | 29 | #include <sys/types.h> |
| 30 | 30 | #include <stdlib.h> |