File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -122,9 +122,13 @@ pub const NC_MPIPOSIX: c_int = {
122
122
123
123
#[ cfg( feature = "4.6.2" ) ]
124
124
pub const NC_PERSIST : c_int = 0x4000 ;
125
-
126
125
pub const NC_INMEMORY : c_int = 0x8000 ;
127
126
127
+ #[ cfg( feature = "4.9.0" ) ]
128
+ pub const NC_NOATTCREORD : c_int = 0x20000 ;
129
+ #[ cfg( feature = "4.9.0" ) ]
130
+ pub const NC_NODIMSCALE_ATTACH : c_int = 0x40000 ;
131
+
128
132
#[ cfg( feature = "4.6.2" ) ]
129
133
pub const NC_MAX_MAGIC_NUMBER_LEN : usize = 8 ;
130
134
Original file line number Diff line number Diff line change @@ -71,6 +71,15 @@ bitflags::bitflags! {
71
71
const NETCDF4 = NC_NETCDF4 ;
72
72
/// Read from memory
73
73
const INMEMORY = NC_INMEMORY ;
74
+ /// Disable netcdf-4 (hdf5) attribute creation order tracking
75
+ #[ cfg( feature = "4.9.0" ) ]
76
+ const NOATTCREORD = NC_NOATTCREORD ;
77
+ /// Disable netcdf-4 (hdf5) attaching dimscales to variables
78
+ #[ cfg( feature = "4.9.0" ) ]
79
+ const NODIMSCALE_ATTACH = NC_NODIMSCALE_ATTACH ;
80
+
81
+ // Unknown flags from C library
82
+ const _ = !0 ;
74
83
}
75
84
}
76
85
You can’t perform that action at this time.
0 commit comments