summaryrefslogtreecommitdiff
path: root/src/include/cctk_FortranWrappers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/cctk_FortranWrappers.h')
-rw-r--r--src/include/cctk_FortranWrappers.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/include/cctk_FortranWrappers.h b/src/include/cctk_FortranWrappers.h
new file mode 100644
index 00000000..7ff11369
--- /dev/null
+++ b/src/include/cctk_FortranWrappers.h
@@ -0,0 +1,26 @@
+ /*@@
+ @header cctk_FortranWrappers.h
+ @date Sat Sep 18 00:52:35 1999
+ @author Tom Goodale
+ @desc
+ Routines for dealing with Fortran wrappers
+ @enddesc
+ @@*/
+
+#ifndef __CCTK_FORTRANWRAPPERS_H_
+#define __CCTK_FORTRANWRAPPERS_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int CCTK_RegisterFortranWrapper(const char *name, int (*function)(void *, void *));
+
+int (*CCTK_FortranWrapper(const char *name))(void *, void *);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+