summaryrefslogtreecommitdiff
path: root/src/ivyxtloop.c
diff options
context:
space:
mode:
authorfcolin2005-08-10 09:52:18 +0000
committerfcolin2005-08-10 09:52:18 +0000
commitc271c5a2383450c2a39e126ebef38d8dd2e2f8e6 (patch)
tree46eaf3e4a9fc79a47bfd9e8942cef981908f304f /src/ivyxtloop.c
parentb0954d7461dc709cd1a43097c260c8e8b0183cee (diff)
downloadivy-c-c271c5a2383450c2a39e126ebef38d8dd2e2f8e6.zip
ivy-c-c271c5a2383450c2a39e126ebef38d8dd2e2f8e6.tar.gz
ivy-c-c271c5a2383450c2a39e126ebef38d8dd2e2f8e6.tar.bz2
ivy-c-c271c5a2383450c2a39e126ebef38d8dd2e2f8e6.tar.xz
remplacement argc argv par IvyArgument
Diffstat (limited to 'src/ivyxtloop.c')
-rw-r--r--src/ivyxtloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ivyxtloop.c b/src/ivyxtloop.c
index 0406498..6a451a1 100644
--- a/src/ivyxtloop.c
+++ b/src/ivyxtloop.c
@@ -75,7 +75,7 @@ void IvyChannelInit(void)
channel_initialized = 1;
}
-void IvyChannelClose( Channel channel )
+void IvyChannelRemove( Channel channel )
{
if ( channel->handle_delete )
@@ -111,7 +111,7 @@ void IvyXtChannelAppContext( XtAppContext cntx )
app = cntx;
}
-Channel IvyChannelOpen(IVY_HANDLE fd, void *data,
+Channel IvyChannelAdd(IVY_HANDLE fd, void *data,
ChannelHandleDelete handle_delete,
ChannelHandleRead handle_read
)