From: Anthony Minessale Date: Tue, 6 Nov 2007 15:39:10 +0000 (+0000) Subject: update sample X-Git-Tag: v1.0.6~38^3~601 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d30d52bab456f90f758af18ab914db0246d37be7;p=thirdparty%2Ffreeswitch.git update sample git-svn-id: http://svn.openzap.org/svn/openzap/trunk@317 a93c3328-9c30-0410-af19-c9cd2b2d52af --- diff --git a/libs/freetdm/src/zap_skel.c b/libs/freetdm/src/zap_skel.c index c1be4e9e99..5f31ea2166 100644 --- a/libs/freetdm/src/zap_skel.c +++ b/libs/freetdm/src/zap_skel.c @@ -35,51 +35,51 @@ #include "openzap.h" #include "zap_skel.h" -static ZINT_CONFIGURE_FUNCTION(skel_configure) +static ZIO_CONFIGURE_FUNCTION(skel_configure) { - ZINT_CONFIGURE_MUZZLE; + ZIO_CONFIGURE_MUZZLE; return ZAP_FAIL; } -static ZINT_OPEN_FUNCTION(skel_open) +static ZIO_OPEN_FUNCTION(skel_open) { - ZINT_OPEN_MUZZLE; + ZIO_OPEN_MUZZLE; return ZAP_FAIL; } -static ZINT_CLOSE_FUNCTION(skel_close) +static ZIO_CLOSE_FUNCTION(skel_close) { - ZINT_CLOSE_MUZZLE; + ZIO_CLOSE_MUZZLE; return ZAP_FAIL; } -static ZINT_SET_CODEC_FUNCTION(skel_set_codec) +static ZIO_SET_CODEC_FUNCTION(skel_set_codec) { - ZINT_SET_CODEC_MUZZLE; + ZIO_SET_CODEC_MUZZLE; return ZAP_FAIL; } -static ZINT_SET_INTERVAL_FUNCTION(skel_set_interval) +static ZIO_SET_INTERVAL_FUNCTION(skel_set_interval) { - ZINT_SET_INTERVAL_MUZZLE; + ZIO_SET_INTERVAL_MUZZLE; return ZAP_FAIL; } -static ZINT_WAIT_FUNCTION(skel_wait) +static ZIO_WAIT_FUNCTION(skel_wait) { - ZINT_WAIT_MUZZLE; + ZIO_WAIT_MUZZLE; return ZAP_FAIL; } -static ZINT_READ_FUNCTION(skel_read) +static ZIO_READ_FUNCTION(skel_read) { - ZINT_READ_MUZZLE; + ZIO_READ_MUZZLE; return ZAP_FAIL; } -static ZINT_WRITE_FUNCTION(skel_write) +static ZIO_WRITE_FUNCTION(skel_write) { - ZINT_WRITE_MUZZLE; + ZIO_WRITE_MUZZLE; return ZAP_FAIL; }