search for: tdesc

Displaying 12 results from an estimated 12 matches for "tdesc".

Did you mean: desc
2003 Nov 11
4
Registering an application
...include <asterisk/file.h> #include <asterisk/logger.h> #include <asterisk/channel.h> #include <asterisk/pbx.h> #include <asterisk/module.h> #include <asterisk/translate.h> #include <string.h> #include <stdlib.h> #include <pthread.h> static char *tdesc = "Alex's app"; static char *app = "Alex"; static char *synopsis = "Alex test"; static char *descrip ="Test"; STANDARD_LOCAL_USER; LOCAL_USER_DECL; static int alex_exec(struct ast_channel *chan, void *data) { return 0; } int unload_module(void) {...
2005 Jan 22
0
chan_capi patch: app_capiFax modifications
...ne FAX_BINARY_FILE_TRANSFER_FORMAT 7 typedef struct fax3proto3 { unsigned char len; unsigned short resolution __attribute__ ((packed)); unsigned short format __attribute__ ((packed)); unsigned char Infos[100] __attribute__ ((packed)); } B3_PROTO_FAXG3; static char *tdesc = "(CAPI*) Receive Faxes."; static char *app = "capiAnswerFax2"; static char *synopsis = "Answer Fax with CAPI (Allow Station ID Setting)"; STANDARD_LOCAL_USER; LOCAL_USER_DECL; void SetupB3Config(B3_PROTO_FAXG3 *B3conf, int FAX_Format, char* stationID) { int le...
2009 Aug 26
1
app_swift issue
...cfg_goto_exten = 0; ast_log(LOG_DEBUG, "Config goto_exten is %d\n", cfg_goto_exten); } ast_config_destroy(cfg); } else { ast_log(LOG_NOTICE, "Failed to load config\n"); } return res; } char *description(void) { return tdesc; } #define AST_MODULE "app_swift" AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Cepstral Swift TTS Application"); -- Best Regards Shakeel Abbas -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-us...
2011 Jul 01
0
[LLVMdev] LLVM and managed languages
Hi Talin, I have some questions below. If these topics have already been discussed in earlier threads, kindly point me there. I'm aware of your GC proposal, but the rest is new to me. On Jul 1, 2011, at 11:05 AM, Talin wrote: > Garbage collection is still way too difficult. The biggest problem is the inability to track SSA values - it requires the frontend to generate very inefficient and
2009 Aug 26
4
Fw: app_swift issue
..."yes")) cfg_goto_exten = 1; else cfg_goto_exten = 0; ast_log(LOG_DEBUG, "Config goto_exten is %d\n", cfg_goto_exten); } ast_config_destroy(cfg); } else { ast_log(LOG_NOTICE, "Failed to load config\n"); } return res; } char *description(void) { return tdesc; } #define AST_MODULE "app_swift" AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Cepstral Swift TTS Application"); -- Best Regards Shakeel Abbas -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/aster...
2005 Aug 25
2
Custom Application For Asterisk
...include <tds.h> #include <tdsconvert.h> #include <ctype.h> #if !defined(TDS_INT_EXIT) #define TDS_PRE_0_62 #warning "You have older TDS, you should upgrade!" #endif #define DATE_FORMAT "%Y/%m/%d %T" static char *config = "abcd.conf"; static char *tdesc = "abcd Application"; static char *app = "abcd"; static char *synopsis = "abcd New"; static char *descrip = " abcd-IVR: Requires a user to enter a" " number. and announce number according to query result\n"; static char abcdhostname[30] = &q...
2005 Aug 26
0
Broken pipe of stdinpcm on asterisk-ices.xml
...oreadformat) ast_set_read_format(chan, oreadformat); return res; } int unload_module(void) { STANDARD_HANGUP_LOCALUSERS; return ast_unregister_application(app); } int load_module(void) { return ast_register_application(app, ices_exec, synopsis, descrip); } char *description(void) { return tdesc; } int usecount(void) { int res; STANDARD_USECOUNT(res); return res; } char *key() { return ASTERISK_GPL_KEY; } ------------------------------- Is this "broken pipe" means that I don't have "stdinpcim" on /dev? My system has "stdin" but no "stdinpcm&q...
2005 Jun 21
5
app_changrab.c released on pbxfreeware.org
I released app_changrab.c lastnight really late... It includes a way to hijack a channel and originate calls from the CLI. /b --- Keep Your Friends Close, But Your Enemies Even Closer...
2008 Mar 13
4
Application registration on Asterisk 1.4 and 1.6?
...(void){ int res; res = ast_register_application(app, example_exec, synopsis, descrip); return res; } int reload(void){ return load_module(); } int unload_module(void){ //STANDARD_HANGUP_LOCALUSERS; return ast_unregister_application(app); } char *description(void){ return tdesc; } int usecount(void){ int res; //STANDARD_USECOUNT(res); return res; } char *key(){ return ASTERISK_GPL_KEY; } Have the registration way that the applications are registered in arterisk 1.2.* changed to much from version 1.4.* and 1.6.*? Best Regards. Tarjeta de cr?dito...
2016 Aug 04
4
help please: how to sort the contents of a "SymbolTableListTraits<GlobalVariable>"?
...s=0x7fffffffb7a8, Action=clang::Backend_EmitObj, OS=...) at /work/Abe/non-backup-worthy/build_dirs/Clang/pre-3.9/2016-07-17-22-54-42-1cb1a4c-master/llvm/tools/cfe/lib/CodeGen/BackendUtil.cpp:734 #14 0x0000000002adeda6 in clang::EmitBackendOutput (Diags=..., CGOpts=..., TOpts=..., LOpts=..., TDesc=..., M=0x82b1f90, Action=clang::Backend_EmitObj, OS=...) at /work/Abe/non-backup-worthy/build_dirs/Clang/pre-3.9/2016-07-17-22-54-42-1cb1a4c-master/llvm/tools/cfe/lib/CodeGen/BackendUtil.cpp:751 #15 0x00000000035d622f in clang::BackendConsumer::HandleTranslationUnit (this=0x82b1a80, C=...
2011 Jul 01
10
[LLVMdev] LLVM and managed languages
So I've been using LLVM for about 4 years now, and I've posted a lot on this list about specific issues. What I would like to do is step back for a moment and give my "big picture" assessment of LLVM overall, particularly with respect to developing a "managed" language like Java / C# or my own language, Tart. Obviously, I feel that LLVM is the best choice out there,
2016 Jul 27
2
help please: how to sort the contents of a "SymbolTableListTraits<GlobalVariable>"?
Dear all, In the process of trying to add optimization for better layout of global variables, I have run up against a roadblock: I don`t seem to be able to sort the contents of a "SymbolTableListTraits<GlobalVariable>" -- or even swap two elements in that list -- without causing LLVM to crash. I have tried writing a comparator class and then using "llvm::iplist<