Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reintroduce the changes to the windows build chain to allow gcc cross compilation...
[simgrid.git] / src / xbt_modinter.h
1 /* $Id$ */
2
3 /* xbt_modinter - How to init/exit the XBT modules                          */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifndef XBT_MODINTER_H
11 #define XBT_MODINTER_H
12 #include "xbt/misc.h"
13
14 /* Modules definitions */
15 void xbt_log_init(int *argc,char **argv);
16 void xbt_log_exit(void);
17 void xbt_fifo_exit(void);
18 void xbt_dict_exit(void);
19
20 void xbt_context_init(void);
21 void xbt_context_exit(void);
22
23 void xbt_thread_mod_init(void);
24 void xbt_thread_mod_exit(void);   
25    
26 #endif /* XBT_MODINTER_H */