forked from goma/brkfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrd_dpi.h
72 lines (55 loc) · 2.41 KB
/
rd_dpi.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/************************************************************************ *
* Goma - Multiphysics finite element software *
* Sandia National Laboratories *
* *
* Copyright (c) 2014 Sandia Corporation. *
* *
* Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, *
* the U.S. Government retains certain rights in this software. *
* *
* This software is distributed under the GNU General Public License. *
\************************************************************************/
/* rd_dpi.h - prototype declarations for rd_dpi.c
*/
#ifndef _RD_DPI_H
#define _RD_DPI_H
#ifdef EXTERN
#undef EXTERN
#endif
#ifdef _RD_DPI_C
#define EXTERN
#
#endif
#ifndef _RD_DPI_C
#define EXTERN extern
#endif
EXTERN int rd_dpi /* rd_dpi.c */
PROTO((Dpi *, /* fantastic structure defd in "dpi.h" */
char *, /* fn - filename */
int )); /* verbosity - how much to talk */
EXTERN void getdid /* rd_dpi.c */
PROTO((int , /* netcdf_unit */
char *, /* string_name */
int, /* boolean for hard error interpretation */
int *)); /* dimension_identifier_address */
EXTERN void getvid /* rd_dpi.c */
PROTO((int , /* netcdf_unit */
char *, /* string_name */
int, /* boolean for hard error interpretation */
int *)); /* variable_identifier_address */
EXTERN void getdim /* rd_dpi.c */
PROTO((int , /* netcdf_unit */
int , /* dimension_id */
int *)); /* where -- to put the dimension value */
EXTERN void free_dpi /* rd_dpi.c */
PROTO((Dpi *)); /* fantastic structure defd in "dpi.h" */
EXTERN void free_dpi_uni /* rd_dpi.c */
PROTO((Dpi *)); /* fantastic structure defd in "dpi.h" */
EXTERN void init_dpi_struct /* rd_dpi.c */
PROTO((Dpi *)); /* fantastic structure defd in "dpi.h" */
EXTERN void init_dpi_version /* rd_dpi.c */
PROTO((Dpi *)); /* fantastic structure defd in "dpi.h" */
EXTERN void exo_dpi_clone /* rd_dpi.c */
PROTO((Exo_DB *, /* exo */
Dpi *)); /* dpi */
#endif /* _RD_DPI_H */