summaryrefslogtreecommitdiff
path: root/src/include/ParameterBindings.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-10-28 15:43:02 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-10-28 15:43:02 +0000
commitd3525b74023a8df6c83b4ae634bbe9b93c2c48be (patch)
tree9554b9458f5bfff09d11e25a869d0dde10a2a103 /src/include/ParameterBindings.h
parentc4da61f5c1ed3e6074865bef96c7d07bdb58fbe0 (diff)
Added prototypes for ParameterSet, ParameterGet, ParameterWalk
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1117 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/ParameterBindings.h')
-rw-r--r--src/include/ParameterBindings.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/ParameterBindings.h b/src/include/ParameterBindings.h
index 7e28d40a..cc84e62c 100644
--- a/src/include/ParameterBindings.h
+++ b/src/include/ParameterBindings.h
@@ -26,6 +26,18 @@ int ParameterCreate(const char *name, /* The parameter name */
int n_ranges, /* How many allowed ranges it has */
...);
+int ParameterSet (const char *name, /* The name of the parameter */
+ const char *thorn, /* The originating thorn */
+ const char *value); /* The value of the parameter */
+
+void *ParameterGet (const char *name, /* The name of the parameter */
+ const char *thorn, /* The originating thorn */
+ int *type); /* Holds type of parameter */
+
+const char *ParameterWalk(
+ int first, /* Get first parameter or not */
+ const char *origin); /* The origin of this walk */
+
#ifdef __cplusplus
}
#endif