aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@eff87b29-5268-4891-90a3-a07138403961>2002-11-06 19:32:47 +0000
committertradke <tradke@eff87b29-5268-4891-90a3-a07138403961>2002-11-06 19:32:47 +0000
commit6db603ed6f5c913ede66341f9e8096beaf67256f (patch)
tree40818f50d9e11c1d0341cc0e2f858f65d156c381
parent62299064c118c48873727b2f64875b3b611ba404 (diff)
Use the "Hyperslab_*" function aliases.
You must also update CactusPUGH/PUGHSlab now. git-svn-id: http://svn.cactuscode.org/arrangements/CactusIO/IOJpeg/trunk@76 eff87b29-5268-4891-90a3-a07138403961
-rw-r--r--interface.ccl24
1 files changed, 23 insertions, 1 deletions
diff --git a/interface.ccl b/interface.ccl
index 516dd5e..659baa7 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -4,6 +4,28 @@
implements: IOJpeg
inherits: IO, Hyperslab, jpeg6b
-USES INCLUDE HEADER: Hyperslab.h
USES INCLUDE HEADER: jconfig.h
USES INCLUDE HEADER: jpeglib.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_DefineGlobalMappingByIndex 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
+CCTK_INT FUNCTION Hyperslab_FreeMapping CCTK_INT mapping_handle
+
+USES FUNCTION Hyperslab_Get
+USES FUNCTION Hyperslab_DefineGlobalMappingByIndex
+USES FUNCTION Hyperslab_FreeMapping