Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Load xbt/misc.h to get the definition of XBT_PUBLIC
[simgrid.git] / src / xbt_modinter.h
index f2b13fe..9ca9f9e 100644 (file)
@@ -1,18 +1,20 @@
 /* $Id$ */
 
-/* xbt_modinter - Interface to XBT modules                                  */
+/* xbt_modinter - How to init/exit the XBT modules                          */
 
-/* Authors: Martin Quinson                                                  */
-/* Copyright (C) 2004 Martin Quinson.                                       */
+/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
 
 /* 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. */
* under the terms of the license (GNU LGPL) which comes with this package. */
 
 #ifndef XBT_MODINTER_H
 #define XBT_MODINTER_H
+#include "xbt/misc.h"
 
 /* Modules definitions */
-void gras_log_init(void);
-void xbt_log_exit(void);
+XBT_PUBLIC void xbt_log_init(int *argc,char **argv);
+XBT_PUBLIC void xbt_log_exit(void);
+XBT_PUBLIC void xbt_fifo_exit(void);
+XBT_PUBLIC void xbt_dict_exit(void);
 
 #endif /* XBT_MODINTER_H */