From c271c5a2383450c2a39e126ebef38d8dd2e2f8e6 Mon Sep 17 00:00:00 2001 From: fcolin Date: Wed, 10 Aug 2005 09:52:18 +0000 Subject: remplacement argc argv par IvyArgument --- src/ivy.h | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) (limited to 'src/ivy.h') diff --git a/src/ivy.h b/src/ivy.h index d66e1c7..fb8fd6b 100644 --- a/src/ivy.h +++ b/src/ivy.h @@ -1,4 +1,6 @@ + /* + * \ingroup Ivy * Ivy, C interface * * Copyright (C) 1997-2000 @@ -6,13 +8,17 @@ * * Main functions * - * Authors: François-Régis Colin + * \author Authors: François-Régis Colin * Stéphane Chatty * * $Id$ * * Please refer to file version.h for the * copyright notice regarding this software + * \todo + * many things TODO + * \bug + * many introduced */ #ifndef IVY_H @@ -22,6 +28,8 @@ extern "C" { #endif +#include "IvyArgument.h" + /* numero par default du bus */ #define DEFAULT_BUS 2010 @@ -46,7 +54,7 @@ typedef void (*IvyBindCallback)( IvyClientPtr app, void *user_data, IvyBindEvent typedef void (*IvyDieCallback)( IvyClientPtr app, void *user_data, int id ) ; /* callback appele sur reception de messages normaux */ -typedef void (*MsgCallback)( IvyClientPtr app, void *user_data, int argc, char **argv ) ; +typedef void (*MsgCallback)( IvyClientPtr app, void *user_data, IvyArgument args ) ; /* callback appele sur reception de messages directs */ typedef void (*MsgDirectCallback)( IvyClientPtr app, void *user_data, int id, int len, void *msg ) ; @@ -55,20 +63,37 @@ typedef void (*MsgDirectCallback)( IvyClientPtr app, void *user_data, int id, in typedef struct _msg_rcv *MsgRcvPtr; /* filtrage des regexps */ -void IvyClasses( int argc, const char **argv); +void IvySetMyMessagesStart( int argc, const char **argv); +/** + * + * \param AppName + * \param ready + * \param callback + * \param data + * \param die_callback + * \param die_data + */ void IvyInit( - const char *AppName, /* nom de l'application */ - const char *ready, /* ready Message peut etre NULL */ + 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 */ + void * data, /* user data passe au callback */ IvyDieCallback die_callback, /* last change callback before die */ - void *die_data /* user data */ + void * die_data /* user data */ ); +/** + * + * \param priority prioritie de traitement des clients + */ void IvySetApplicationPriority( int priority ); void IvySetBindCallback( IvyBindCallback bind_callback, void *bind_data ); -void IvyStart (const char*); +/** + * + * \param bus + */ +void IvyStart (const char* bus); void IvyStop (); /* query sur les applications connectees */ @@ -82,6 +107,8 @@ char **IvyGetApplicationMessages( IvyClientPtr app); /* demande de reception d'u MsgRcvPtr IvyBindMsg( MsgCallback callback, void *user_data, const char *fmt_regexp, ... ); /* avec sprintf prealable */ void IvyUnbindMsg( MsgRcvPtr id ); +MsgRcvPtr IvyBindSimpleMsg( MsgCallback callback, void *user_data, const char *fmt_regexp, ... ); /* avec sprintf prealable */ + /* emission d'un message d'erreur */ void IvySendError( IvyClientPtr app, int id, const char *fmt, ... ); -- cgit v1.1