~ubuntu-branches/ubuntu/trusty/nco/trusty

« back to all changes in this revision

Viewing changes to src/nco/nco_typ.h

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-03-26 16:54:51 UTC
  • mfrom: (5.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20140326165451-u9erq1ez71r248lt
Tags: 4.4.2-1
* New upstream release.
  (closes: #611673)
* Added missing watch flle.
* Policy bumped to 3.9.5.
* Added build-dep on autotools-dev and update/clean step in debian/rules.
  (closes: #727470)
* Changed Vcs-* url to canonicali ones.
* Debhelper level set to 9.
* Now nco.html is a single file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Header: /cvsroot/nco/nco/src/nco/nco_typ.h,v 1.34 2012/01/01 20:51:53 zender Exp $ */
 
1
/* $Header: /cvsroot/nco/nco/src/nco/nco_typ.h,v 1.37 2013/12/31 05:14:02 zender Exp $ */
2
2
 
3
3
/* Purpose: Type definitions, opaque types */
4
4
 
5
 
/* Copyright (C) 1995--2012 Charlie Zender
 
5
/* Copyright (C) 1995--2014 Charlie Zender
6
6
   License: GNU General Public License (GPL) Version 3
7
7
   See http://www.gnu.org/copyleft/gpl.html for full license text */
8
8
 
86
86
#ifndef NC_STRING
87
87
# define        NC_STRING       12      /* string */
88
88
#endif
 
89
#ifndef NC_VLEN
 
90
# define        NC_VLEN         13      /* vlen */
 
91
#endif
 
92
#ifndef NC_OPAQUE
 
93
# define        NC_OPAQUE       14      /* opaque */
 
94
#endif
 
95
#ifndef NC_ENUM
 
96
# define        NC_ENUM         15      /* enum */
 
97
#endif
 
98
#ifndef NC_COMPOUND
 
99
# define        NC_COMPOUND     16      /* compound */
 
100
#endif
 
101
#ifndef NC_MAX_ATOMIC_TYPE
 
102
#define NC_MAX_ATOMIC_TYPE NC_STRING
 
103
#endif
 
104
#ifndef NC_FIRSTUSERTYPEID
 
105
#define NC_FIRSTUSERTYPEID 32
 
106
#endif
 
107
 
89
108
/* Fill values for netCDF4 datatypes. Referenced in nco_mss_val.c: */
90
109
#ifndef NC_FILL_UBYTE
91
110
# define NC_FILL_UBYTE   (255)