aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@eff87b29-5268-4891-90a3-a07138403961>2003-09-01 10:54:16 +0000
committertradke <tradke@eff87b29-5268-4891-90a3-a07138403961>2003-09-01 10:54:16 +0000
commit36e9e17e19e2a9de94d116f5a7118614491504f5 (patch)
tree8b44aa209c7aac164f672d9064940193f2c6de15
parent582e312fa662cf9fb820163b0940db5723abbf89 (diff)
Fixed prototype for the hyperslab conversion function parameter to
Hyperslab_DefineGlobalMappingByIndex() / Hyperslab_DefineLocalMappingByIndex(). git-svn-id: http://svn.cactuscode.org/arrangements/CactusIO/IOJpeg/trunk@87 eff87b29-5268-4891-90a3-a07138403961
-rw-r--r--interface.ccl13
1 files changed, 7 insertions, 6 deletions
diff --git a/interface.ccl b/interface.ccl
index 5f35b21..6a4a1ae 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -27,12 +27,13 @@ CCTK_INT FUNCTION \
CCTK_INT ARRAY IN downsample, \
CCTK_INT IN table_handle, \
CCTK_INT CCTK_FPOINTER \
- conversion_fn (CCTK_INT IN nelems, \
- CCTK_INT IN stride, \
- CCTK_INT IN from_type, \
- CCTK_INT IN to_type, \
- CCTK_POINTER IN from, \
- CCTK_POINTER OUT to), \
+ conversion_fn (CCTK_INT IN nelems, \
+ CCTK_INT IN src_stride,\
+ CCTK_INT IN dst_stride,\
+ CCTK_INT IN src_type, \
+ CCTK_INT IN dst_type, \
+ CCTK_POINTER IN src, \
+ CCTK_POINTER OUT dst), \
CCTK_INT ARRAY OUT hsize)
CCTK_INT FUNCTION Hyperslab_FreeMapping (CCTK_INT IN mapping_handle)