summaryrefslogtreecommitdiff
path: root/src/include/cctki_FortranWrappers.h
blob: 3c581007d086251f74c119acfb728fccbc48508e (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    cctki_FortranWrappers.h
   @date      Sat Sep 18 00:52:35 1999
   @author    Tom Goodale
   @desc 
   Routines for dealing with Fortran wrappers
   @enddesc 
 @@*/

#ifndef __CCTKI_FORTRANWRAPPERS_H_
#define __CCTKI_FORTRANWRAPPERS_H_

#ifdef __cplusplus
extern "C" {
#endif

int CCTKi_RegisterFortranWrapper(const char *name, int (*function)(void *, void *));

int (*CCTKi_FortranWrapper(const char *name))(void *, void *);

#ifdef __cplusplus
}
#endif

#endif