Replaced YES and NO macros with their menuYesNo or menuSimm equivalents.

This commit is contained in:
Andrew Johnson
2009-07-08 18:14:11 +00:00
parent 16f839ac12
commit a318ace551
14 changed files with 41 additions and 27 deletions

View File

@@ -37,6 +37,7 @@
#undef GEN_SIZE_OFFSET
#include "menuOmsl.h"
#include "menuIvoa.h"
#include "menuYesNo.h"
#include "epicsExport.h"
/* Create RSET - Record Support Entry Table*/
@@ -213,11 +214,11 @@ static long writeValue(stringoutRecord *prec)
if (status)
return(status);
if (prec->simm == NO){
if (prec->simm == menuYesNoNO){
status=(*pdset->write_stringout)(prec);
return(status);
}
if (prec->simm == YES){
if (prec->simm == menuYesNoYES){
status=dbPutLink(&prec->siol,DBR_STRING,
prec->val,1);
} else {