]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Mon, 4 Jun 2007 15:28:23 +0000 (15:28 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Mon, 4 Jun 2007 15:28:23 +0000 (15:28 +0000)
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@207 a93c3328-9c30-0410-af19-c9cd2b2d52af

libs/freetdm/src/dsp/fsk.h
libs/freetdm/src/dsp/uart.h

index dfb6af369cd3fc14e940344dd414872b80e148a4..a2615b1fed36e9f4ba2ce7c1df254b5993d0f803 100644 (file)
  *     2005 03 20      R. Krten                created
 */
 
-#ifndef        __BELL202_H__
-#define        __BELL202_H__
-
-typedef void (*bytehandler_func_t) (void *, int);
-typedef void (*bithandler_func_t) (void *, int);
+#ifndef        __FSK_H__
+#define        __FSK_H__
+#include "uart.h"
 
 typedef struct dsp_fsk_attr_s
 {
@@ -86,5 +84,5 @@ void                                  dsp_fsk_destroy(dsp_fsk_handle_t **handle);
 
 void                                   dsp_fsk_sample(dsp_fsk_handle_t *handle, double normalized_sample);
 
-#endif // __BELL202_H__
+#endif // __FSK_H__
 
index 368eb7aafa05733a78f787ae4b7906f74ad84f5b..bfad94ef381fbafcca285212944d97817403fc87 100644 (file)
@@ -35,7 +35,9 @@
 #ifndef        __UART_H__
 #define        __UART_H__
 
-#include <fsk.h>
+typedef void (*bytehandler_func_t) (void *, int);
+typedef void (*bithandler_func_t) (void *, int);
+
 
 typedef struct dsp_uart_attr_s
 {