blob: c94f459a6ba048a6ed5553094311c7900d99c104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*-------------------------------------------------------------------------
* Copyright (C) 1997-2001 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 "H5private.h"
#include "H5Oprivate.h"
#define PABLO_MASK H5O_null_mask
/* This message derives from H5O */
const H5O_class_t H5O_NULL[1] = {{
H5O_NULL_ID, /*message id number */
"null", /*message name for debugging */
0, /*native message size */
NULL, /*no decode method */
NULL, /*no encode method */
NULL, /*no copy method */
NULL, /*no size method */
NULL, /*no reset method */
NULL, /*no free method */
NULL, /*no get share method */
NULL, /*no set share method */
NULL, /*no debug method */
}};
|