X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ad437279eac6319224e1701a4782184bd5b48542..62e3231a0c0ab2726ef027a3e70f3e3dfe1e81db:/src/gras_modinter.h diff --git a/src/gras_modinter.h b/src/gras_modinter.h index 8355d06815..e4626340fa 100644 --- a/src/gras_modinter.h +++ b/src/gras_modinter.h @@ -1,22 +1,29 @@ /* $Id$ */ -/* gras_modinter.h - Interface to GRAS modules */ +/* gras_modinter.h - How to init/exit the GRAS modules */ -/* Authors: Martin Quinson */ -/* Copyright (C) 2003, 2004 the OURAGAN project. */ +/* 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 GRAS_MODINTER_H #define GRAS_MODINTER_H /* modules initialization functions */ +void gras_emul_init(void); +void gras_emul_exit(void); + +void gras_msg_register(void); void gras_msg_init(void); void gras_msg_exit(void); +void gras_trp_register(void); void gras_trp_init(void); void gras_trp_exit(void); void gras_datadesc_init(void); void gras_datadesc_exit(void); +void gras_procdata_init(void); +void gras_procdata_exit(void); + #endif /* GRAS_MODINTER_H */