summaryrefslogtreecommitdiff
path: root/src/include/cctk_FortranWrappers.h
blob: 7ff113692b3c9043628d91f744146a7de4c1be8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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