summaryrefslogtreecommitdiff
path: root/Bus/Ivy/IvyCbindings.h
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:29:31 +0000
committerfcolin2007-02-01 13:29:31 +0000
commitafe2e7dfc1388cad991e8d38dda7d648c137aa52 (patch)
tree92bf63d2b2b34a805927aa294c7c51912638f66a /Bus/Ivy/IvyCbindings.h
parent0be65f8a110ee9bf5da9c93e0bd5b5b62b3bad0c (diff)
parent04c263c314499e38d64af9d4a1aa5e2b8d9d5ead (diff)
downloadivy-cplusplus-windows@3001.zip
ivy-cplusplus-windows@3001.tar.gz
ivy-cplusplus-windows@3001.tar.bz2
ivy-cplusplus-windows@3001.tar.xz
modif struct svnwindows@3001
Diffstat (limited to 'Bus/Ivy/IvyCbindings.h')
-rw-r--r--Bus/Ivy/IvyCbindings.h108
1 files changed, 0 insertions, 108 deletions
diff --git a/Bus/Ivy/IvyCbindings.h b/Bus/Ivy/IvyCbindings.h
deleted file mode 100644
index 38ccfd6..0000000
--- a/Bus/Ivy/IvyCbindings.h
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * Ivy, C interface
- *
- * Copyright (C) 1997-2000
- * Centre d'Études de la Navigation Aérienne
- *
- * Main functions
- *
- * Authors: François-Régis Colin <fcolin@cena.dgac.fr>
- * Stéphane Chatty <chatty@cena.dgac.fr>
- *
- * $Id: ivy.h,v 1.8 2000/08/07 11:29:29 sc Exp $
- *
- * Please refer to file version.h for the
- * copyright notice regarding this software
- */
-
-#ifndef IVY_C_BINDINGS_H
-#define IVY_C_BINDINGS_H
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifdef WIN32
-#ifdef IVY_EXPORTS
-#define DLL_EXPORT _declspec(dllexport)
-#else
-#pragma comment(lib,"Ivy.LIB" )
-#define DLL_EXPORT /*_declspec(dllimport)*/
-#endif
-#endif
-
-
-/* numero par default du bus */
-
-#define DEFAULT_BUS 2010
-
-typedef void * Channel ;
-typedef int TimerId;
-
-typedef void * IvyClientPtr;
-
-typedef enum { IvyApplicationConnected, IvyApplicationDisconnected } IvyApplicationEvent;
-
-extern void IvyDefaultApplicationCallback( IvyClientPtr app, void *user_data, IvyApplicationEvent evt ) ;
-
-/* callback callback appele sur connexion deconnexion d'une appli */
-typedef void (*IvyCApplicationCallback)( IvyClientPtr app, void *user_data, IvyApplicationEvent evt ) ;
-
-/* callback appele sur reception de die */
-typedef void (*IvyCDieCallback)( IvyClientPtr app, void *user_data, int id ) ;
-
-/* callback appele sur reception de messages normaux */
-typedef void (*IvyCMsgCallback)( IvyClientPtr app, void *user_data, int argc, const char **argv ) ;
-
-/* callback appele sur reception de messages directs */
-typedef void (*IvyCMsgDirectCallback)( IvyClientPtr app, void *user_data, int id, char *msg ) ;
-
-/* identifiant d'une expression reguliere ( Bind/Unbind ) */
-typedef int MsgRcvPtr;
-
-/* filtrage des regexps */
-DLL_EXPORT void IvyClasses( int argc, const char **argv);
-
-DLL_EXPORT void IvyInit(
- const char *AppName, /* nom de l'application */
- const char *ready, /* ready Message peut etre NULL */
- IvyCApplicationCallback callback, /* callback appele sur connection deconnection d'une appli */
- void *data, /* user data passe au callback */
- IvyCDieCallback die_callback, /* last change callback before die */
- void *die_data ); /* user data */
-
-DLL_EXPORT void IvyStart (const char*);
-DLL_EXPORT void IvyStop ();
-
-/* query sur les applications connectees */
-DLL_EXPORT const char *IvyGetApplicationName( IvyClientPtr app );
-DLL_EXPORT const char *IvyGetApplicationHost( IvyClientPtr app );
-DLL_EXPORT IvyClientPtr IvyGetApplication( char *name );
-DLL_EXPORT const char *IvyGetApplicationList();
-DLL_EXPORT const char **IvyGetApplicationMessages( IvyClientPtr app); /* demande de reception d'un message */
-
-DLL_EXPORT MsgRcvPtr IvyBindMsg( IvyCMsgCallback callback, void *user_data, const char *fmt_regexp, ... ); /* avec sprintf prealable */
-DLL_EXPORT void IvyUnbindMsg( MsgRcvPtr id );
-
-/* emission d'un message d'erreur */
-DLL_EXPORT void IvySendError( IvyClientPtr app, int id, const char *fmt, ... );
-
-/* emmission d'un message die pour terminer l'application */
-DLL_EXPORT void IvySendDieMsg( IvyClientPtr app );
-
-/* emission d'un message retourne le nb effectivement emis */
-
-DLL_EXPORT int IvySendMsg( const char *fmt_message, ... ); /* avec sprintf prealable */
-
-/* Message Direct Inter-application */
-
-DLL_EXPORT void IvyBindDirectMsg( IvyCMsgDirectCallback callback, void *user_data);
-DLL_EXPORT void IvySendDirectMsg( IvyClientPtr app, int id, char *msg );
-DLL_EXPORT void IvyMainLoop( void(*hook)(void) );
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif