summaryrefslogtreecommitdiff
path: root/src/include/CactusrfrInterface.h
blob: 0bd77ae6910c1f1dbcf6c8cb6e64ef8e1a31e235 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 /*@@
   @header    CactusrfrInterface.h
   @date      Thu Feb 11 18:42:03 1999
   @author    Tom Goodale
   @desc 
   A file to contain prototypes for the interface between Cactus and the rfr.
   @enddesc 
 @@*/

#ifndef _CACTUSRFRINTERFACE_H_
#define _CACTUSRFRINTERFACE_H_

#ifdef __cplusplus
extern "C" {
#endif

int CCTKi_rfrStorageOn(void *GH, int group);

int CCTKi_rfrStorageOff(void *GH, int group);

int CCTKi_rfrCommunicationOn(void *GH, int group);

int CCTKi_rfrCommunicationOff(void *GH, int group);

int CCTKi_rfrTriggerable(int variable);

int CCTKi_rfrTriggerSaysGo(void *GH, int variable);

int CCTKi_rfrTriggerAction(void *GH, int group);

int CCTKi_rfrCallFunc(void *GH, int language, void *function);


#ifdef __cplusplus
}
#endif


#endif