summaryrefslogtreecommitdiff
path: root/src/include/cctk_GHExtensions.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-01-25 10:05:56 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-01-25 10:05:56 +0000
commita7f55c01ae632147f667efbbfdaaa509e2be01ed (patch)
tree6ad9034c4dcbb7590c31bcb66169991679a09a93 /src/include/cctk_GHExtensions.h
parent29bfcbaba503af41067f6ea16f506d1d0190bd06 (diff)
CCTK function name changes
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1297 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_GHExtensions.h')
-rw-r--r--src/include/cctk_GHExtensions.h46
1 files changed, 27 insertions, 19 deletions
diff --git a/src/include/cctk_GHExtensions.h b/src/include/cctk_GHExtensions.h
index 0a50b449..8b6072a9 100644
--- a/src/include/cctk_GHExtensions.h
+++ b/src/include/cctk_GHExtensions.h
@@ -15,25 +15,33 @@
extern "C" {
#endif
-int CCTK_RegisterGHExtension(const char *name);
-
-int CCTK_RegisterGHExtensionSetupGH(int handle,
- void *(*func)(tFleshConfig *, int, cGH *));
-
-int CCTK_RegisterGHExtensionInitGH(int handle, int (*func)(cGH *));
-
-int CCTK_RegisterGHExtensionrfrTraverseGH(int handle, int (*func)(cGH *, int));
-
-int CCTKi_SetupGHExtensions(tFleshConfig *config,
- int convergence_level,
- cGH *GH);
-
-int CCTKi_InitGHExtensions(cGH *GH);
-
-int CCTK_rfrTraverseGHExtensions(cGH *GH, int rfrpoint);
-
-int CCTK_GHExtensionHandle(const char *name);
-
+int CCTK_RegisterGHExtension
+ (
+ const char *name
+ );
+
+int CCTK_RegisterGHExtensionSetupGH
+ (
+ int handle,
+ void *(*func)(tFleshConfig *, int, cGH *)
+ );
+
+int CCTK_RegisterGHExtensionInitGH
+ (
+ int handle,
+ int (*func)(cGH *)
+ );
+
+int CCTK_RegisterGHExtensionrfrTraverseGH
+ (
+ int handle,
+ int (*func)(cGH *, int)
+ );
+
+int CCTK_GHExtensionHandle
+ (
+ const char *name
+ );
#ifdef __cplusplus
}