OpenMPI  0.1.1
mpiext.h
1 /*
2  * $HEADER$
3  */
4 #if defined(c_plusplus) || defined(__cplusplus)
5 extern "C" {
6 #endif
7 
8 #include "ompi_config.h"
9 
10 OMPI_DECLSPEC int ompi_mpiext_init(void);
11 OMPI_DECLSPEC int ompi_mpiext_fini(void);
12 
13 typedef int (*ompi_mpiext_init_fn_t)(void);
14 typedef int (*ompi_mpiext_fini_fn_t)(void);
15 
17  ompi_mpiext_init_fn_t init;
18  ompi_mpiext_fini_fn_t fini;
19 };
21 
22 #if defined(c_plusplus) || defined(__cplusplus)
23 }
24 #endif
Definition: mpiext.h:16