diff options
Diffstat (limited to 'src/H5Onull.c')
-rw-r--r-- | src/H5Onull.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/H5Onull.c b/src/H5Onull.c new file mode 100644 index 0000000..97e1ff7 --- /dev/null +++ b/src/H5Onull.c @@ -0,0 +1,33 @@ +/*------------------------------------------------------------------------- + * Copyright (C) 1997 National Center for Supercomputing Applications. + * All rights reserved. + * + *------------------------------------------------------------------------- + * + * Created: H5Onull.c + * Aug 6 1997 + * Robb Matzke <matzke@llnl.gov> + * + * Purpose: The null message. + * + * Modifications: + * + *------------------------------------------------------------------------- + */ +#include "hdf5.h" +#include "H5private.h" +#include "H5Oprivate.h" + +/* This message derives from H5O */ +const H5O_class_t H5O_NULL[1] = {{ + H5O_NULL_ID, /*message id number */ + "null", /*message name for debugging */ + NULL, /*no decode method */ + NULL, /*no encode method */ + NULL, /*no fast method */ + NULL, /*no cache method */ + NULL, /*no copy method */ + NULL, /*no size method */ + NULL, /*no free method */ + NULL, /*no debug method */ +}}; |