mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
Add missing DLL exports for parallel functions.
This commit is contained in:
parent
b9330d2055
commit
fbc4d1a53d
@ -14,6 +14,7 @@
|
||||
#define NETCDF_PAR_H 1
|
||||
|
||||
#include <mpi.h>
|
||||
#include "ncexternl.h"
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
@ -25,24 +26,24 @@ extern "C" {
|
||||
#define NC_COLLECTIVE 1
|
||||
|
||||
/* Create a file and enable parallel I/O. */
|
||||
extern int
|
||||
EXTERNL int
|
||||
nc_create_par(const char *path, int cmode, MPI_Comm comm, MPI_Info info,
|
||||
int *ncidp);
|
||||
|
||||
/* Open a file and enable parallel I/O. */
|
||||
extern int
|
||||
EXTERNL int
|
||||
nc_open_par(const char *path, int mode, MPI_Comm comm, MPI_Info info,
|
||||
int *ncidp);
|
||||
|
||||
/* Change a variable from independent (the default) to collective
|
||||
* access. */
|
||||
extern int
|
||||
EXTERNL int
|
||||
nc_var_par_access(int ncid, int varid, int par_access);
|
||||
|
||||
extern int
|
||||
EXTERNL int
|
||||
nc_create_par_fortran(const char *path, int cmode, int comm,
|
||||
int info, int *ncidp);
|
||||
extern int
|
||||
EXTERNL int
|
||||
nc_open_par_fortran(const char *path, int mode, int comm,
|
||||
int info, int *ncidp);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user