summaryrefslogtreecommitdiff
path: root/src/ivy.h
diff options
context:
space:
mode:
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