From e12396c7dd368fe1a91eee9995d34f634cfb6db0 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 9 Apr 2009 17:28:59 +0000 Subject: [PATCH] epicsShareAPI fixes for Windows. --- src/dbStatic/dbPvdLib.c | 2 +- src/dbStatic/dbStaticPvt.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dbStatic/dbPvdLib.c b/src/dbStatic/dbPvdLib.c index ee485662a..43f9cd40f 100644 --- a/src/dbStatic/dbPvdLib.c +++ b/src/dbStatic/dbPvdLib.c @@ -188,7 +188,7 @@ void dbPvdFreeMem(dbBase *pdbbase) free(ppvd); } -void dbPvdDump(dbBase *pdbbase, int verbose) +void epicsShareAPI dbPvdDump(dbBase *pdbbase, int verbose) { unsigned int empty = 0; dbPvd *ppvd; diff --git a/src/dbStatic/dbStaticPvt.h b/src/dbStatic/dbStaticPvt.h index 7d169b220..26c583b0f 100644 --- a/src/dbStatic/dbStaticPvt.h +++ b/src/dbStatic/dbStaticPvt.h @@ -49,7 +49,7 @@ typedef struct{ dbRecordType *precordType; dbRecordNode *precnode; }PVDENTRY; -epicsShareFunc int epicsShareAPI dbPvdTableSize(int size); +epicsShareFunc int dbPvdTableSize(int size); extern int dbStaticDebug; void dbPvdInitPvt(DBBASE *pdbbase); PVDENTRY *dbPvdFind(DBBASE *pdbbase,const char *name,int lenname);