Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #302 from mpoquet/rename-s4u-synchro-examples
[simgrid.git] / include / xbt / module.h
index 21dd04c..353baad 100644 (file)
@@ -1,22 +1,19 @@
-/* $Id$ */
-
 /* module - modularize the code                                             */
 
-/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
+/* Copyright (c) 2004-2018. The SimGrid Team. 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. */
 
-#ifndef _XBT_MODULE_H
-#define _XBT_MODULE_H
+#ifndef XBT_MODULE_H
+#define XBT_MODULE_H
+
+#include <xbt/misc.h>           /* XBT_PUBLIC */
 
-extern char *xbt_binary_name;
+SG_BEGIN_DECL()
 
-typedef struct xbt_module_ xbt_module_t;
+XBT_PUBLIC void xbt_init(int* argc, char** argv);
 
-typedef xbt_module_t (*xbt_module_new_fct_t)(int argc, char **argv);
-typedef int (*xbt_module_finalize_fct_t)(void);
+SG_END_DECL()
 
-void xbt_init(int *argc,char **argv);
-void xbt_exit(void);
-#endif /* _XBT_MODULE_H */
+#endif /* XBT_MODULE_H */