netCDF
4.2.1.1
Main Page
Related Pages
Functions
Files
Examples
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Macros
Groups
Pages
libdispatch
dopaque.c
Go to the documentation of this file.
1
7
#include "ncdispatch.h"
8
/* All these functions are part of this named group... */
12
32
int
33
nc_def_opaque
(
int
ncid,
size_t
size,
const
char
*name,
nc_type
*xtypep)
34
{
35
NC* ncp;
36
int
stat = NC_check_id(ncid,&ncp);
37
if
(stat !=
NC_NOERR
)
return
stat;
38
return
ncp->dispatch->def_opaque(ncid,size,name,xtypep);
39
}
40
60
int
61
nc_inq_opaque
(
int
ncid,
nc_type
xtype,
char
*name,
size_t
*sizep)
62
{
63
int
class
= 0;
64
int
stat =
nc_inq_user_type
(ncid,xtype,name,sizep,NULL,NULL,&
class
);
65
if
(stat !=
NC_NOERR
)
return
stat;
66
if
(
class
!=
NC_OPAQUE
) stat =
NC_EBADTYPE
;
67
return
stat;
68
}
69
/* End of named group ...*/
Generated on Wed Aug 22 2012 14:39:39 for netCDF. NetCDF is a
Unidata
library.