summaryrefslogtreecommitdiff
path: root/src/ivy.h
diff options
context:
space:
mode:
authorfcolin2005-05-26 14:37:35 +0000
committerfcolin2005-05-26 14:37:35 +0000
commitfbc04d171cd11ec16b9141dda95699323762a00b (patch)
treef2452251df738bc7d1995c636fd06e82e8f90c10 /src/ivy.h
parentdeaa6a5ec82c1d158caf360fd12672f72d7dae5b (diff)
downloadivy-c-fbc04d171cd11ec16b9141dda95699323762a00b.zip
ivy-c-fbc04d171cd11ec16b9141dda95699323762a00b.tar.gz
ivy-c-fbc04d171cd11ec16b9141dda95699323762a00b.tar.bz2
ivy-c-fbc04d171cd11ec16b9141dda95699323762a00b.tar.xz
passage du separateur de message a \0
suppression des fonctions IvyChannel dynamique on se repose sur le linker modif des adresses mails
Diffstat (limited to 'src/ivy.h')
-rw-r--r--src/ivy.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/ivy.h b/src/ivy.h
index 1ea319a..26a880c 100644
--- a/src/ivy.h
+++ b/src/ivy.h
@@ -6,8 +6,8 @@
*
* Main functions
*
- * Authors: François-Régis Colin <fcolin@cena.dgac.fr>
- * Stéphane Chatty <chatty@cena.dgac.fr>
+ * Authors: François-Régis Colin <fcolin@cena.fr>
+ * Stéphane Chatty <chatty@cena.fr>
*
* $Id$
*
@@ -65,10 +65,10 @@ void IvyInit(
void *die_data /* user data */
);
- void IvySetBindCallback(
+void IvySetBindCallback(
IvyBindCallback bind_callback,
void *bind_data );
- void IvyDelBindCallback();
+void IvyDelBindCallback();
void IvyStart (const char*);
void IvyStop ();
@@ -97,6 +97,10 @@ int IvySendMsg( const char *fmt_message, ... ); /* avec sprintf prealable */
void IvyBindDirectMsg( MsgDirectCallback callback, void *user_data);
void IvySendDirectMsg( IvyClientPtr app, int id, char *msg );
+/* boucle principale d'Ivy */
+/* use of internal MainLoop or XtMainLoop, or other MainLoop integration */
+extern void IvyMainLoop(void(*hook)(void));
+
#ifdef __cplusplus
}
#endif