aboutsummaryrefslogtreecommitdiff
path: root/interface.ccl
diff options
context:
space:
mode:
authorrideout <rideout@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2003-05-02 22:11:25 +0000
committerrideout <rideout@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2003-05-02 22:11:25 +0000
commit2e398b7e19d01b0515c0ac9d135e34c9bd393a1b (patch)
tree984a80e5f38460630c18ca3b699c8a71c4d5f62c /interface.ccl
parent2fe1c2f35ebeb8e374e1938671267f24f7d529d9 (diff)
Support for new aliased function specification format.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOHDF5Util/trunk@86 7842ec3a-9562-4be5-9c5b-06ba18f2b668
Diffstat (limited to 'interface.ccl')
-rw-r--r--interface.ccl40
1 files changed, 20 insertions, 20 deletions
diff --git a/interface.ccl b/interface.ccl
index be1e4c0..949717d 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -5,29 +5,29 @@ implements: IOHDF5Util
inherits: IO, Hyperslab
CCTK_INT FUNCTION \
- Hyperslab_Get (CCTK_POINTER cctkGH, \
- CCTK_INT mapping_handle, \
- CCTK_INT proc, \
- CCTK_INT vindex, \
- CCTK_INT timelevel, \
- CCTK_INT hdatatype, \
- CCTK_POINTER hdata)
+ Hyperslab_Get (CCTK_POINTER IN cctkGH, \
+ CCTK_INT IN mapping_handle, \
+ CCTK_INT IN proc, \
+ CCTK_INT IN vindex, \
+ CCTK_INT IN timelevel, \
+ CCTK_INT IN hdatatype, \
+ CCTK_POINTER IN hdata)
CCTK_INT FUNCTION \
- Hyperslab_DefineLocalMappingByIndex (CCTK_POINTER cctkGH, \
- CCTK_INT vindex, \
- CCTK_INT hdim, \
- CCTK_INT:ARRAY direction, \
- CCTK_INT:ARRAY origin, \
- CCTK_INT:ARRAY extent, \
- CCTK_INT:ARRAY downsample, \
- CCTK_INT table_handle, \
- CCTK_INT CCTK_FPOINTER conversion_fn(CCTK_INT nelems, CCTK_INT stride, CCTK_INT from_type, CCTK_INT to_type, CCTK_POINTER:ARRAY from, CCTK_POINTER:ARRAY to), \
- CCTK_INT:ARRAY hsize_local, \
- CCTK_INT:ARRAY hsize_global, \
- CCTK_INT:ARRAY hoffset_global)
+ Hyperslab_DefineLocalMappingByIndex (CCTK_POINTER IN cctkGH, \
+ CCTK_INT IN vindex, \
+ CCTK_INT IN hdim, \
+ CCTK_INT OUT direction, \
+ CCTK_INT OUT origin, \
+ CCTK_INT OUT extent, \
+ CCTK_INT OUT 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 OUT from, CCTK_POINTER OUT to), \
+ CCTK_INT OUT hsize_local, \
+ CCTK_INT OUT hsize_global, \
+ CCTK_INT OUT hoffset_global)
-CCTK_INT FUNCTION Hyperslab_FreeMapping (CCTK_INT mapping_handle)
+CCTK_INT FUNCTION Hyperslab_FreeMapping (CCTK_INT IN mapping_handle)
USES FUNCTION Hyperslab_Get
USES FUNCTION Hyperslab_DefineLocalMappingByIndex