Source
381
381
#define H5T_VAX_F64 (H5OPEN H5T_VAX_F64_g)
382
382
H5_DLLVAR hid_t H5T_VAX_F32_g;
383
383
H5_DLLVAR hid_t H5T_VAX_F64_g;
384
384
385
385
/*
386
386
* The predefined native types. These are the types detected by H5detect and
387
387
* they violate the naming scheme a little. Instead of a class name,
388
388
* precision and byte order as the last component, they have a C-like type
389
389
* name. If the type begins with `U' then it is the unsigned version of the
390
390
* integer type; other integer types are signed. The type LLONG corresponds
391
-
* to C's `long_long' and LDOUBLE is `long double' (these types might be the
391
+
* to C's `long long' and LDOUBLE is `long double' (these types might be the
392
392
* same as `LONG' and `DOUBLE' respectively).
393
393
*/
394
394
#define H5T_NATIVE_CHAR (CHAR_MIN?H5T_NATIVE_SCHAR:H5T_NATIVE_UCHAR)
395
395
#define H5T_NATIVE_SCHAR (H5OPEN H5T_NATIVE_SCHAR_g)
396
396
#define H5T_NATIVE_UCHAR (H5OPEN H5T_NATIVE_UCHAR_g)
397
397
#define H5T_NATIVE_SHORT (H5OPEN H5T_NATIVE_SHORT_g)
398
398
#define H5T_NATIVE_USHORT (H5OPEN H5T_NATIVE_USHORT_g)
399
399
#define H5T_NATIVE_INT (H5OPEN H5T_NATIVE_INT_g)
400
400
#define H5T_NATIVE_UINT (H5OPEN H5T_NATIVE_UINT_g)
401
401
#define H5T_NATIVE_LONG (H5OPEN H5T_NATIVE_LONG_g)