2010-08-17 08:44:22 +04:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-08-18 02:40:22 +04:00
|
|
|
#include "ompi_config.h"
|
|
|
|
|
2010-08-17 08:44:22 +04:00
|
|
|
OMPI_DECLSPEC int ompi_mpiext_init(void);
|
|
|
|
OMPI_DECLSPEC int ompi_mpiext_fini(void);
|
|
|
|
|
|
|
|
typedef int (*ompi_mpiext_init_fn_t)(void);
|
|
|
|
typedef int (*ompi_mpiext_fini_fn_t)(void);
|
|
|
|
|
|
|
|
struct ompi_mpiext_component_t {
|
|
|
|
ompi_mpiext_init_fn_t init;
|
|
|
|
ompi_mpiext_fini_fn_t fini;
|
|
|
|
};
|
|
|
|
typedef struct ompi_mpiext_component_t ompi_mpiext_component_t;
|
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|