aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2002-11-06 19:36:23 +0000
committertradke <tradke@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2002-11-06 19:36:23 +0000
commit0ff721d23d693bbb7ced4b274925759db68c4320 (patch)
tree531197094dd814d6443168a1c8dcc9365687d3d2
parent9bfe99ac487e42ed154a1860bd24b3869bfda2d2 (diff)
Use the "Hyperslab_*" function aliases.
You must also update CactusPUGH/PUGHSlab now. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOHDF5Util/trunk@80 7842ec3a-9562-4be5-9c5b-06ba18f2b668
-rw-r--r--interface.ccl25
1 files changed, 24 insertions, 1 deletions
diff --git a/interface.ccl b/interface.ccl
index 6b46a0a..4d04905 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -4,4 +4,27 @@
implements: IOHDF5Util
inherits: IO, Hyperslab
-USES INCLUDE HEADER: Hyperslab.h
+CCTK_INT FUNCTION Hyperslab_Get const CCTK_POINTER cctkGH, \
+ CCTK_INT mapping_handle, \
+ CCTK_INT proc, \
+ CCTK_INT vindex, \
+ CCTK_INT timelevel, \
+ CCTK_INT hdatatype, \
+ CCTK_POINTER hdata
+CCTK_INT FUNCTION Hyperslab_DefineLocalMappingByIndex const CCTK_POINTER cctkGH, \
+ CCTK_INT vindex, \
+ CCTK_INT hdim, \
+ const CCTK_INT *direction, \
+ const CCTK_INT *origin, \
+ const CCTK_INT *extent, \
+ const CCTK_INT *downsample, \
+ CCTK_INT table_handle, \
+ CCTK_FPOINTER conversion_fn, \
+ CCTK_INT *hsize_local, \
+ CCTK_INT *hsize_global, \
+ CCTK_INT *hoffset_global
+CCTK_INT FUNCTION Hyperslab_FreeMapping CCTK_INT mapping_handle
+
+USES FUNCTION Hyperslab_Get
+USES FUNCTION Hyperslab_DefineLocalMappingByIndex
+USES FUNCTION Hyperslab_FreeMapping