summaryrefslogtreecommitdiff
path: root/src/main/Dummies.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-02 18:28:32 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-02 18:28:32 +0000
commit8f8856a952558d10bfa66ccec80e886b105b06e0 (patch)
tree298bcaebf0cd4c3e9bd63e307181e5dd16f9dbc9 /src/main/Dummies.c
parent9b510848e4e9cecde11625ed1dd2859ed8b44cce (diff)
New files to contain dummy stuff until we work out what to do with it.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@185 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/Dummies.c')
-rw-r--r--src/main/Dummies.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/main/Dummies.c b/src/main/Dummies.c
new file mode 100644
index 00000000..f6b44f60
--- /dev/null
+++ b/src/main/Dummies.c
@@ -0,0 +1,61 @@
+ /*@@
+ @file Dummies.c
+ @date Tue Feb 2 18:56:38 1999
+ @author Tom Goodale
+ @desc
+ A file to contain some dummy functions until the real ones are written.
+ @enddesc
+ @@*/
+
+#include "Dummies.h"
+
+static char *rcsid = "$Id$";
+
+int CCTK_DummyStorageOn(void *GH, int group)
+{
+ return 0;
+}
+
+int CCTK_DummyStorageOff(void *GH, int group)
+{
+ return 0;
+}
+
+int CCTK_DummyCommunicationOn(void *GH, int group)
+{
+ return 0;
+}
+
+int CCTK_DummyCommunicationOff(void *GH, int group)
+{
+ return 0;
+}
+
+int CCTK_DummyTriggerable(int variable)
+{
+ return 0;
+}
+
+int CCTK_DummyTriggerSaysGo(int variable)
+{
+ return 0;
+}
+
+int CCTK_DummyTriggerAction(void *GH, int group)
+{
+ return 0;
+}
+
+int CCTK_DummyCallFunc(void *GH, int language, void *function)
+{
+
+ void (*calledfunc)(void *);
+
+ calledfunc = (void (*)(void *))function;
+
+ /* Call the function. */
+
+ calledfunc(GH);
+
+ return 0;
+}