summaryrefslogtreecommitdiffstats
path: root/tools/h5toh4/h5toh4.h
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-03-27 16:11:41 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-03-27 16:11:41 (GMT)
commit0f7c2e3017ff80683d9d67f880cd6f7275350aa5 (patch)
treeab173008d5e78bec9a817039329f38060cc5a5e5 /tools/h5toh4/h5toh4.h
parent480c319ab46252cb5455280737c7cad0e8be0472 (diff)
downloadhdf5-0f7c2e3017ff80683d9d67f880cd6f7275350aa5.zip
hdf5-0f7c2e3017ff80683d9d67f880cd6f7275350aa5.tar.gz
hdf5-0f7c2e3017ff80683d9d67f880cd6f7275350aa5.tar.bz2
[svn-r5088] Purpose:
Code removal Description: Removed the HDF4 source files from the HDF5 tree. The directories will remain. Use the "-P" option when doing a cvs checkout or update to "prune" the empty directories from your personal tree.
Diffstat (limited to 'tools/h5toh4/h5toh4.h')
-rw-r--r--tools/h5toh4/h5toh4.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/tools/h5toh4/h5toh4.h b/tools/h5toh4/h5toh4.h
deleted file mode 100644
index d268060..0000000
--- a/tools/h5toh4/h5toh4.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright © 1998 NCSA
- * All rights reserved.
- *
- * Programmer: Paul Harten <pharten@ncsa.uiuc.edu>
- * Friday, October 16th, 1998
- *
- * Purpose: Convert H5 files to H4 files.
- */
-
-#ifndef _H5TOH4_H
-#define _H5TOH4_H
-
-#include "hdf.h"
-#include "mfhdf.h"
-#include "hdf5.h"
-
-#ifdef H5_HAVE_SYS_STAT_H
-# include <sys/stat.h>
-#endif
-
-typedef struct op_data_t {
- /*
- * information being carried between iterations.
- *
- */
-
- int32 hfile_id;
- int32 vgroup_id;
- int32 sd_id;
- int32 sds_id;
- int32 vdata_id;
- int32 obj_idx;
-
-} op_data_t;
-
-#ifdef H5TOH4_DEBUG
-#define DEBUG_PRINT(s1,s2,s3,n1) ( fprintf(stderr,s1,s2,s3,n1) )
-#else
-#define DEBUG_PRINT(s1,s2,s3,n1) ( fprintf(stderr," ") )
-#endif
-
-#endif