summaryrefslogtreecommitdiff
path: root/src/include/IOMethods.h
blob: d5607dee2e9b3f22f47751e210d312698f78f769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
struct IOMethod
{
  int    (*OutputGH)(cGH *);
  int    (*OutputVarAs)(cGH *, const char *, const char *);
  int    (*TriggerOutput)(cGH *, int);
  int    (*TimeToOutput)(cGH *,int);
};

#ifdef __cplusplus
extern "C" {
#endif

int CCTK_RegisterIOMethod(const char *name);
int CCTK_RegisterIOMethodOutputGH(int handle, int (*func)(cGH *));
int CCTK_RegisterIOMethodTimeToOutput(int handle, int (*func)(cGH *, int));
int CCTK_RegisterIOMethodTriggerOutput(int handle, int (*func)(cGH *, int));
int CCTK_RegisterIOMethodOutputVarAs(int handle, int (*func)(cGH *,
                                     const char *,const char *));
#ifdef __cplusplus
}
#endif