summaryrefslogtreecommitdiff
path: root/src/main/Parameters.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-02-03 12:33:39 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-02-03 12:33:39 +0000
commitfa7a772f84ab11881800a527ed20d59b39e6830f (patch)
tree66226e241ecffb1c5882579ef849f31fea2848d5 /src/main/Parameters.c
parente716c3af2dc7b78bf861c523fddc2f1cce5f12e2 (diff)
New function and structure names
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1352 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/Parameters.c')
-rw-r--r--src/main/Parameters.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/main/Parameters.c b/src/main/Parameters.c
index d73f4602..8378f6d0 100644
--- a/src/main/Parameters.c
+++ b/src/main/Parameters.c
@@ -23,8 +23,7 @@ const char *rcsid="$Header$";
#include "cctk_ActiveThorns.h"
#include "ParameterBindings.h"
-#include "cctk_ParameterFunctions.h"
-
+#include "cctk_Parameter.h"
#include "gnu_regex.h"
@@ -51,7 +50,7 @@ int STR_cmpi(const char *string1, const char *string2);
*/
typedef struct PARAM
{
- t_param_prop* props;
+ cParamData* props;
void* data;
} t_param;
@@ -926,7 +925,7 @@ int CCTK_ParameterList (const char *thorn, char ***paramlist, int *n_param)
/**********************************************************************/
/*@@
- @routine CCTK_ParameterInfo
+ @routine CCTK_ParameterData
@date Tue Aug 31 18:10:46 MSZ 1999
@author Andre Merzky
@desc
@@ -953,7 +952,7 @@ int CCTK_ParameterList (const char *thorn, char ***paramlist, int *n_param)
@var param_prop
@vdesc parameter descriptions
- @vtype t_param_prop *
+ @vtype cParamData *
@vio out
@vcomment
@endvar
@@ -964,10 +963,10 @@ int CCTK_ParameterList (const char *thorn, char ***paramlist, int *n_param)
@endreturndesc
@@*/
-t_param_prop *CCTK_ParameterInfo (const char *name,
- const char *thorn)
+cParamData *CCTK_ParameterData (const char *name,
+ const char *thorn)
{
- t_param_prop *retval;
+ cParamData *retval;
t_param *param;
@@ -1081,7 +1080,7 @@ static t_param *ParameterNew(const char *thorn,
if(newparam)
{
- newparam->props = (t_param_prop*) malloc (sizeof (t_param_prop));
+ newparam->props = (cParamData*) malloc (sizeof (cParamData));
if (newparam->props)
{