Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move the definition of XBT_PUBLIC from portable.h (which is a private header) to...
[simgrid.git] / src / gras_modinter.h
index ccf52cd784cfa42094edb31cfd3cf0b995f0fb2f..0fc8e328fe5ed6983433f350f9e1db5d9db0d9bf 100644 (file)
@@ -1,8 +1,8 @@
 /* $Id$ */
 
-/* gras_modinter.h - Interface to GRAS modules                              */
+/* gras_modinter.h - How to init/exit the GRAS modules                      */
 
-/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
+/* 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. */
 #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);
+XBT_PUBLIC void gras_emul_init(void);
+XBT_PUBLIC void XBT_PUBLIC gras_emul_exit(void); 
+
+XBT_PUBLIC void gras_msg_register(void);
+XBT_PUBLIC void gras_msg_init(void);
+XBT_PUBLIC void gras_msg_exit(void);
+XBT_PUBLIC void gras_trp_register(void);
+XBT_PUBLIC void gras_trp_init(void);
+XBT_PUBLIC void gras_trp_exit(void);
+XBT_PUBLIC void gras_datadesc_init(void);
+XBT_PUBLIC void gras_datadesc_exit(void);
+
+XBT_PUBLIC void gras_procdata_init(void);
+XBT_PUBLIC void gras_procdata_exit(void);
 
 #endif /* GRAS_MODINTER_H */