From: mquinson Date: Tue, 2 Nov 2004 12:03:52 +0000 (+0000) Subject: Ups, should be commited since a while X-Git-Tag: v3.3~4893 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ad437279eac6319224e1701a4782184bd5b48542 Ups, should be commited since a while git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@457 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras_modinter.h b/src/gras_modinter.h new file mode 100644 index 0000000000..8355d06815 --- /dev/null +++ b/src/gras_modinter.h @@ -0,0 +1,22 @@ +/* $Id$ */ + +/* gras_modinter.h - Interface to GRAS modules */ + +/* Authors: Martin Quinson */ +/* Copyright (C) 2003, 2004 the OURAGAN project. */ + +/* This program is free software; you can redistribute it and/or modify it + under the terms of the license (GNU LGPL) which comes with this package. */ + +#ifndef GRAS_MODINTER_H +#define GRAS_MODINTER_H + +/* modules initialization functions */ +void gras_msg_init(void); +void gras_msg_exit(void); +void gras_trp_init(void); +void gras_trp_exit(void); +void gras_datadesc_init(void); +void gras_datadesc_exit(void); + +#endif /* GRAS_MODINTER_H */ diff --git a/src/xbt_modinter.h b/src/xbt_modinter.h new file mode 100644 index 0000000000..3207123487 --- /dev/null +++ b/src/xbt_modinter.h @@ -0,0 +1,18 @@ +/* $Id$ */ + +/* xbt_modinter - Interface to XBT modules */ + +/* Authors: Martin Quinson */ +/* Copyright (C) 2004 Martin Quinson. */ + +/* This program is free software; you can redistribute it and/or modify it + under the terms of the license (GNU LGPL) which comes with this package. */ + +#ifndef XBT_MODINTER_H +#define XBT_MODINTER_H + +/* Modules definitions */ +void gras_log_init(void); +void gras_log_exit(void); + +#endif /* XBT_MODINTER_H */