From 8a274412cccd5237e03481028bcfab96a5e85070 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:01:31 +0000 Subject: Utilisateur : Fcolin Date : 18/10/01 Heure : 18:24 Créé (vss 1) --- Ivy/IvyCbindings.cxx | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 Ivy/IvyCbindings.cxx (limited to 'Ivy/IvyCbindings.cxx') diff --git a/Ivy/IvyCbindings.cxx b/Ivy/IvyCbindings.cxx new file mode 100644 index 0000000..de87db4 --- /dev/null +++ b/Ivy/IvyCbindings.cxx @@ -0,0 +1,73 @@ + +#include "stdafx.h" + +#include "Ivy.h" +#include "IvyApplication.h" + +/* filtrage des regexps */ +void IvyClasses( int argc, const char **argv) +{ +} + +void IvyInit( + const char *AppName, /* nom de l'application */ + const char *ready, /* ready Message peut etre NULL */ + IvyApplicationCallback callback, /* callback appele sur connection deconnection d'une appli */ + void *data, /* user data passe au callback */ + IvyDieCallback die_callback, /* last change callback before die */ + void *die_data ) /* user data */ +{ +} +void IvyStart (const char*) +{ +} +void IvyStop () +{ +} + +/* query sur les applications connectees */ +char *IvyGetApplicationName( IvyClientPtr app ) +{ +} +char *IvyGetApplicationHost( IvyClientPtr app ) +{ +} +IvyClientPtr IvyGetApplication( char *name ) +{ +} +char *IvyGetApplicationList() +{ +} +char **IvyGetApplicationMessages( IvyClientPtr app) +{ +} + +MsgRcvPtr IvyBindMsg( MsgCallback callback, void *user_data, const char *fmt_regexp, ... ) +{ +} +void IvyUnbindMsg( MsgRcvPtr id ) +{ +} + +/* emission d'un message d'erreur */ +void IvySendError( IvyClientPtr app, int id, const char *fmt, ... ) +{ +} + +/* emmission d'un message die pour terminer l'application */ +void IvySendDieMsg( IvyClientPtr app ) +{ +} + +/* emission d'un message retourne le nb effectivement emis */ + +int IvySendMsg( const char *fmt_message, ... ) +{ +} + +void IvyBindDirectMsg( MsgDirectCallback callback, void *user_data) +{ +} +void IvySendDirectMsg( IvyClientPtr app, int id, char *msg ) +{ +} -- cgit v1.1