summaryrefslogtreecommitdiff
path: root/src/include/IOMethods.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-19 17:22:30 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-19 17:22:30 +0000
commita909172d62941ed13109235ca95af126dcc3b445 (patch)
tree3f9b9c11177675f9becc58f60ca053e767fa8909 /src/include/IOMethods.h
parentda672c4ee63e41d4a8e568894a729d34dde9dcf0 (diff)
Added missing prototypes
git-svn-id: http://svn.cactuscode.org/flesh/trunk@742 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/IOMethods.h')
-rw-r--r--src/include/IOMethods.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/include/IOMethods.h b/src/include/IOMethods.h
index 0718435b..53952b1e 100644
--- a/src/include/IOMethods.h
+++ b/src/include/IOMethods.h
@@ -5,3 +5,10 @@ struct IOMethod
int (*TriggerOutput)(cGH *, int);
int (*TimeToOutput)(cGH *,int);
};
+
+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 *));