aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/zonedata.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-27 00:36:45 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-27 00:36:45 +0000
commit8fba3ff3778d08ebbc70923f6309aa36fbb37a35 (patch)
treef5326de9a08f2051f2533dae5b897875e06ec77d /include/asterisk/zonedata.h
parent88b679e115f0eedf2300f0ac26483eab33cf8f7c (diff)
Remove unnecessary files (bug #298)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1558 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/zonedata.h')
-rwxr-xr-xinclude/asterisk/zonedata.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/include/asterisk/zonedata.h b/include/asterisk/zonedata.h
deleted file mode 100755
index 3f1db6627..000000000
--- a/include/asterisk/zonedata.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * BSD Telephony Of Mexico "Tormenta" Tone Zone Support 2/22/01
- *
- * Working with the "Tormenta ISA" Card
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * Primary Author: Mark Spencer <markster@linux-support.net>
- *
- */
-
-#ifndef _ASTERISK_ZONEDATA_H
-#define _ASTERISK_ZONEDATA_H
-
-#define ZT_MAX_CADENCE 16
-#define ZT_TONE_MAX 16
-
-struct tone_zone_sound {
- int toneid;
- char data[256]; /* Actual zone description */
- /* Description is a series of tones of the format:
- [!]freq1[+freq2][/time] separated by commas. There
- are no spaces. The sequence is repeated back to the
- first tone description not preceeded by !. time is
- specified in milliseconds */
-};
-
-struct tone_zone {
- int zone; /* Zone number */
- char country[10]; /* Country code */
- char description[40]; /* Description */
- int ringcadence[ZT_MAX_CADENCE]; /* Ring cadence */
- struct tone_zone_sound tones[ZT_TONE_MAX];
-};
-
-extern struct tone_zone builtin_zones[];
-
-#define ZT_TONE_DIALTONE 0
-#define ZT_TONE_BUSY 1
-#define ZT_TONE_RINGTONE 2
-#define ZT_TONE_CONGESTION 3
-#define ZT_TONE_CALLWAIT 4
-#define ZT_TONE_DIALRECALL 5
-#define ZT_TONE_RECORDTONE 6
-#define ZT_TONE_INFO 7
-#define ZT_TONE_CUST1 8
-#define ZT_TONE_CUST2 9
-
-/* Retrieve a raw tone zone structure */
-extern struct tone_zone *tone_zone_find(char *country);
-
-#endif