summaryrefslogtreecommitdiff
path: root/src/include/cctk_GHExtensions.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-30 13:12:54 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-30 13:12:54 +0000
commit08d345f1a8c59312367b102d37ce30ef2070ad31 (patch)
tree1aa71d16bbbc6c19a6aeb040bbd7f74ff191add9 /src/include/cctk_GHExtensions.h
parent911d72f4fc3e61a8faa523cdf5c6f4b37d5d0c33 (diff)
New include file names
git-svn-id: http://svn.cactuscode.org/flesh/trunk@833 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_GHExtensions.h')
-rw-r--r--src/include/cctk_GHExtensions.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/include/cctk_GHExtensions.h b/src/include/cctk_GHExtensions.h
new file mode 100644
index 00000000..ff4d086b
--- /dev/null
+++ b/src/include/cctk_GHExtensions.h
@@ -0,0 +1,43 @@
+ /*@@
+ @header cctk_GHExtensions.h
+ @date Fri Jan 15 14:15:20 1999
+ @author Tom Goodale
+ @desc
+
+ @enddesc
+ @version $Id$
+ @@*/
+
+#ifndef _GHEXTENSIONS_H_
+#define _GHEXTENSIONS_H_
+
+#ifdef __cplusplus
+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 CCTKi_rfrTraverseGHExtensions(cGH *GH, int rfrpoint);
+
+int CCTK_GHExtensionHandle(const char *name);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+