Removed the last vestiges of RSET::get_value()

This commit is contained in:
Andrew Johnson
2015-06-23 18:04:33 -05:00
parent a613a96ad3
commit fa1ddeeb1b
3 changed files with 9 additions and 20 deletions

View File

@@ -46,7 +46,7 @@
static long init_record(eventRecord *, int);
static long process(eventRecord *);
static long special(DBADDR *, int);
static long get_value(eventRecord *, struct valueDes *);
#define get_value NULL
#define cvt_dbaddr NULL
#define get_array_info NULL
#define put_array_info NULL
@@ -153,15 +153,6 @@ static long special(DBADDR *paddr, int after)
return 0;
}
static long get_value(eventRecord *prec, struct valueDes *pvdes)
{
pvdes->field_type = DBF_STRING;
pvdes->no_elements=1;
pvdes->pvalue = (void *)(&prec->val);
return(0);
}
static void monitor(eventRecord *prec)
{