From cb9583a21a922ca871e199cbf2e719b71ab11b0f Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 13 Aug 1996 23:13:35 +0000 Subject: [PATCH] win NT changes --- src/gdd/aitConvert.h | 9 +++++++++ src/gdd/gddAppFuncTable.h | 5 ++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/gdd/aitConvert.h b/src/gdd/aitConvert.h index 7c53bc731..294c5088a 100644 --- a/src/gdd/aitConvert.h +++ b/src/gdd/aitConvert.h @@ -8,6 +8,9 @@ * $Id$ * * $Log$ + * Revision 1.1 1996/06/25 19:11:29 jbk + * new in EPICS base + * * * *Revision 1.1 1996/05/31 13:15:18 jbk * *add new stuff @@ -15,7 +18,13 @@ */ #include + +#ifdef WIN32 +#include +#else #include +#endif + #include "aitTypes.h" #if defined(__i386) || defined(i386) diff --git a/src/gdd/gddAppFuncTable.h b/src/gdd/gddAppFuncTable.h index 6458425ad..ddb5b3df4 100644 --- a/src/gdd/gddAppFuncTable.h +++ b/src/gdd/gddAppFuncTable.h @@ -29,6 +29,9 @@ * * History * $Log$ + * Revision 1.1 1996/07/10 23:44:12 jhill + * moved here from src/cas/generic + * * Revision 1.2 1996/06/26 21:19:01 jhill * now matches gdd api revisions * @@ -223,7 +226,7 @@ inline gddAppFuncTableStatus gddAppFuncTable::read(PV &pv, gdd &value) return S_gddAppFuncTable_badType; } pFunc = this->pMFuncRead[type]; - if (!pFunc) { + if (pFunc==NULL) { errPrintf (S_gddAppFuncTable_badType, __FILE__, __LINE__, "- ukn appl type code = %u\n", type);