summaryrefslogtreecommitdiff
path: root/src/include/cctk_Interp.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-07-10 12:38:58 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-07-10 12:38:58 +0000
commit39eebc96ba1992cfb1577fef3501ebc757b702fd (patch)
tree7fb84c625be7189b57c573246dc586a31ddb0b3a /src/include/cctk_Interp.h
parentf1d72b78d42a6214df2365a616902e2ad3ef2653 (diff)
New names
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1721 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Interp.h')
-rw-r--r--src/include/cctk_Interp.h29
1 files changed, 26 insertions, 3 deletions
diff --git a/src/include/cctk_Interp.h b/src/include/cctk_Interp.h
index 376021d0..37801654 100644
--- a/src/include/cctk_Interp.h
+++ b/src/include/cctk_Interp.h
@@ -20,7 +20,7 @@
extern "C" {
#endif
-#define REGISTER_INTERP_ARGLIST \
+#define INTERP_REGISTER_ARGLIST \
cGH *, \
int, \
int, \
@@ -44,9 +44,9 @@ int CCTK_InterpArray(cGH *GH,
int nOutFields,
...);
-int CCTK_GetInterpHandle(const char *interp);
+int CCTK_InterpHandle(const char *interp);
-int CCTK_RegisterInterpOperator(int (*function)(REGISTER_INTERP_ARGLIST),
+int CCTK_InterpRegisterOperator(int (*function)(INTERP_REGISTER_ARGLIST),
const char *name);
int CCTK_Interp(cGH *GH,
@@ -57,6 +57,29 @@ int CCTK_Interp(cGH *GH,
int nOutFields,
...);
+ /* DEPRECATED IN BETA 9 */
+#define REGISTER_INTERP_ARGLIST \
+ cGH *, \
+ int, \
+ int, \
+ int, \
+ int, \
+ int *, \
+ void **,\
+ int *, \
+ void *, \
+ void *, \
+ void **,\
+ int *, \
+ void **,\
+ int *
+int CCTK_GetInterpHandle(const char *interp);
+int CCTK_RegisterInterpOperator(int (*function)(REGISTER_INTERP_ARGLIST),
+ const char *name);
+
+
+ /* END DEPRECATED IN BETA 9 */
+
#ifdef __cplusplus
}
#endif