summaryrefslogtreecommitdiffstats
path: root/src/H5Odtype.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-01-22 23:27:17 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-01-22 23:27:17 (GMT)
commit58db19e6c576fbc12fdf756f1c2aee8186f1e90a (patch)
tree7c413fc2036f5ee887896642101eb02f1609f74c /src/H5Odtype.c
parentae4d8d9319b06f09e66b311a0358b7bf9227ec2e (diff)
downloadhdf5-58db19e6c576fbc12fdf756f1c2aee8186f1e90a.zip
hdf5-58db19e6c576fbc12fdf756f1c2aee8186f1e90a.tar.gz
hdf5-58db19e6c576fbc12fdf756f1c2aee8186f1e90a.tar.bz2
[svn-r13175] Description:
Checkpoint more progress on refactoring the shared message code. Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Odtype.c')
-rw-r--r--src/H5Odtype.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/H5Odtype.c b/src/H5Odtype.c
index b055e4e..2b06ea4 100644
--- a/src/H5Odtype.c
+++ b/src/H5Odtype.c
@@ -95,6 +95,22 @@ const H5O_msg_class_t H5O_MSG_DTYPE[1] = {{
* and 'size' callback for places to change when updating this. */
#define H5O_DTYPE_VERSION_LATEST H5O_DTYPE_VERSION_3
+/* Set up & include shared message "interface" info */
+#define H5O_SHARED_TYPE H5O_MSG_DTYPE
+#define H5O_SHARED_DECODE H5O_dtype_shared_decode
+#define H5O_SHARED_DECODE_REAL H5O_dtype_decode
+#define H5O_SHARED_ENCODE H5O_dtype_shared_encode
+#define H5O_SHARED_ENCODE_REAL H5O_dtype_encode
+#define H5O_SHARED_SIZE H5O_dtype_shared_size
+#define H5O_SHARED_SIZE_REAL H5O_dtype_size
+#define H5O_SHARED_DELETE H5O_dtype_shared_delete
+#undef H5O_SHARED_DELETE_REAL
+#define H5O_SHARED_LINK H5O_dtype_shared_link
+#undef H5O_SHARED_LINK_REAL
+#define H5O_SHARED_COPY_FILE H5O_dtype_shared_copy_file
+#define H5O_SHARED_COPY_FILE_REAL H5O_dtype_copy_file
+#include "H5Oshared.h" /* Shared Object Header Message Callbacks */
+
/*-------------------------------------------------------------------------
* Function: H5O_dtype_decode_helper