mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
18 lines
236 B
C
18 lines
236 B
C
#ifndef DIMS_H
|
|
#define DIMS_H
|
|
|
|
#include <mpi.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int MY_Dims_init_3D(int nnodes, int ndim, int *dims);
|
|
int MY_Dims_create_3D(int nnodes, int ndim, int *dims);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|