Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Ups, should be commited since a while
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 2 Nov 2004 12:03:52 +0000 (12:03 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 2 Nov 2004 12:03:52 +0000 (12:03 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@457 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/gras_modinter.h [new file with mode: 0644]
src/xbt_modinter.h [new file with mode: 0644]

diff --git a/src/gras_modinter.h b/src/gras_modinter.h
new file mode 100644 (file)
index 0000000..8355d06
--- /dev/null
@@ -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 (file)
index 0000000..3207123
--- /dev/null
@@ -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 */