137104b786
This commit was SVN r21335.
29 строки
513 B
C
29 строки
513 B
C
/*
|
|
* Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
|
*
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef ORTE_ESS_CM_H
|
|
#define ORTE_ESS_CM_H
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/*
|
|
* Module open / close
|
|
*/
|
|
int orte_ess_cm_component_open(void);
|
|
int orte_ess_cm_component_close(void);
|
|
int orte_ess_cm_component_query(mca_base_module_t **module, int *priority);
|
|
|
|
|
|
ORTE_MODULE_DECLSPEC extern orte_ess_base_component_t mca_ess_cm_component;
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* ORTE_ESS_CM_H */
|