[Asterisk-cvs] asterisk/apps app_setcdruserfield.c,1.1,1.2

jeremy at lists.digium.com jeremy at lists.digium.com
Sun Jan 11 12:46:13 CST 2004


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv14554

Modified Files:
	app_setcdruserfield.c 
Log Message:
add more descriptive usage information


Index: app_setcdruserfield.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_setcdruserfield.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- app_setcdruserfield.c	11 Jan 2004 03:23:05 -0000	1.1
+++ app_setcdruserfield.c	11 Jan 2004 18:37:59 -0000	1.2
@@ -25,13 +25,32 @@
 static char *tdesc = "CDR user field apps";
 
 static char *setcdruserfield_descrip = 
-		"SetCDRUserField(value): Set the CDR user field to value\n";
+               "[Synopsis]\n"
+               "SetCDRUserField(value)\n\n"
+               "[Description]\n"
+               "SetCDRUserField(value): Set the CDR 'user field' to value\n"
+               "       The Call Data Record (CDR) user field is an extra field you\n"
+               "       can use for data not stored anywhere else in the record.\n"
+               "       CDR records can be used for billing or storing other arbitrary data\n"
+               "       (I.E. telephone survey responses)\n"
+               "       Also see AppendCDRUserField().\n"
+               "       Always returns 0\n";
+
 		
 static char *setcdruserfield_app = "SetCDRUserField";
 static char *setcdruserfield_synopsis = "Set the CDR user field";
 
 static char *appendcdruserfield_descrip = 
-		"AppendCDRUserField(value): Append value to the CDR user field\n";
+               "[Synopsis]\n"
+               "AppendCDRUserField(value)\n\n"
+               "[Description]\n"
+               "AppendCDRUserField(value): Append value to the CDR user field\n"
+               "       The Call Data Record (CDR) user field is an extra field you\n"
+               "       can use for data not stored anywhere else in the record.\n"
+               "       CDR records can be used for billing or storing other arbitrary data\n"
+               "       (I.E. telephone survey responses)\n"
+               "       Also see SetCDRUserField().\n"
+               "       Always returns 0\n";
 		
 static char *appendcdruserfield_app = "AppendCDRUserField";
 static char *appendcdruserfield_synopsis = "Append to the CDR user field";




More information about the svn-commits mailing list