aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrideout <rideout@38c3d835-c875-442e-b0fe-21c19ce1d001>2003-05-02 22:16:51 +0000
committerrideout <rideout@38c3d835-c875-442e-b0fe-21c19ce1d001>2003-05-02 22:16:51 +0000
commit91ef710355179c04efa79b9d9bcbb5b789c3de4b (patch)
tree2583061f035de3d3edb3ba51372cb1831cd3891b
parent1d0017e823346d1bf7cb5b79c108ebe717563b7f (diff)
Support for new aliased function specification format.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOPanda/trunk@51 38c3d835-c875-442e-b0fe-21c19ce1d001
-rw-r--r--interface.ccl40
1 files changed, 20 insertions, 20 deletions
diff --git a/interface.ccl b/interface.ccl
index dcf0c84..404105d 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -6,29 +6,29 @@ inherits: IO Hyperslab FlexIO
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