18 строки
196 B
C
18 строки
196 B
C
|
/*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
#ifndef LAM_OP_H
|
||
|
#define LAM_OP_H
|
||
|
|
||
|
#include "mpi.h"
|
||
|
|
||
|
typedef struct lam_op {
|
||
|
char o_name[MPI_MAX_OBJECT_NAME];
|
||
|
|
||
|
/* ...more stuff... */
|
||
|
} lam_op_t;
|
||
|
|
||
|
|
||
|
#endif /* LAM_OP_H */
|