source: XIOS/dev/dev_olga/src/extern/src_netcdf4/ncaux.h @ 1022

Last change on this file since 1022 was 1022, checked in by mhnguyen, 7 years ago
File size: 699 bytes
Line 
1/*********************************************************************
2 *   Copyright 2010, UCAR/Unidata
3 *   See netcdf/COPYRIGHT file for copying and redistribution conditions.
4 *   $Id$
5 *   $Header$
6 *********************************************************************/
7
8#ifndef NCAUX_H
9#define NCAUX_H
10
11#define NCAUX_ALIGN_C 0
12#define NCAUX_ALIGN_UNIFORM 1
13
14extern int ncaux_begin_compound(int ncid, const char *name, int alignmode,
15                                void** tag);
16
17extern int ncaux_end_compound(void* tag, nc_type* typeid);
18
19extern int ncaux_abort_compound(void* tag);
20
21extern int ncaux_add_field(void* tag,  const char *name, nc_type field_type,
22                           int ndims, const int* dimsizes);
23
24#endif /*NCAUX_H*/
25
Note: See TracBrowser for help on using the repository browser.