summaryrefslogtreecommitdiff
path: root/src/include/cctk_GHExtensions.h
diff options
context:
space:
mode:
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
}