summaryrefslogtreecommitdiff
path: root/src/include/Dummies.h
blob: b08012600d1f8c1f2a50cda9e09afe7009fb8dc7 (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
43
 /*@@
   @header    Dummies.h
   @date      Tue Feb  2 19:01:45 1999
   @author    Tom Goodale
   @desc 
   A file to contain prototypes for some dummy functions until the real ones 
   are written. 
   @enddesc 
 @@*/

#ifndef _DUMMIES_H_
#define _DUMMIES_H_

#ifdef __cplusplus
extern "C" {
#endif

int CCTKi_DummyStorageOn(void *GH, int group);

int CCTKi_DummyStorageOff(void *GH, int group);

int CCTKi_DummyCommunicationOn(void *GH, int group);

int CCTKi_DummyCommunicationOff(void *GH, int group);

int CCTKi_DummyTriggerable(int variable);

int CCTKi_DummyTriggerSaysGo(void *GH, int variable);

int CCTKi_DummyTriggerAction(void *GH, int group);

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


#ifdef __cplusplus
}
#endif


#endif