Modify lsodset, set USE_TYPED_DSET

This commit is contained in:
Andrew Johnson
2019-11-16 22:19:38 -06:00
parent 465ab44606
commit 7893445a2e
7 changed files with 12 additions and 12 deletions

View File

@@ -34,6 +34,7 @@ dbRecStd_SRCS += devLiSoft.c
dbRecStd_SRCS += devLoSoft.c
devLsiSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devLsiSoft.c
devLsoSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devLsoSoft.c
dbRecStd_SRCS += devMbbiDirectSoft.c
dbRecStd_SRCS += devMbbiDirectSoftRaw.c
@@ -64,6 +65,7 @@ dbRecStd_SRCS += devBoSoftCallback.c
dbRecStd_SRCS += devCalcoutSoftCallback.c
dbRecStd_SRCS += devI64outSoftCallback.c
dbRecStd_SRCS += devLoSoftCallback.c
devLsoSoftCallback_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devLsoSoftCallback.c
dbRecStd_SRCS += devMbboSoftCallback.c
dbRecStd_SRCS += devMbboDirectSoftCallback.c

View File

@@ -21,6 +21,6 @@ static long write_string(lsoRecord *prec)
}
lsodset devLsoSoft = {
5, NULL, NULL, NULL, NULL, write_string
{ 5, NULL, NULL, NULL, NULL }, write_string
};
epicsExportAddress(dset, devLsoSoft);

View File

@@ -40,7 +40,7 @@ static long write_string(lsoRecord *prec)
}
lsodset devLsoSoftCallback = {
5, NULL, NULL, NULL, NULL, write_string
{ 5, NULL, NULL, NULL, NULL }, write_string
};
epicsExportAddress(dset, devLsoSoftCallback);

View File

@@ -103,7 +103,7 @@ static long write_lso(lsoRecord *prec)
}
lsodset devLsoStdio = {
5, NULL, init_lso, NULL, NULL, write_lso
{ 5, NULL, init_lso, NULL, NULL }, write_lso
};
epicsExportAddress(dset, devLsoStdio);