From 8ea828b8b3f9cb73eded5b76bb2403688db3b3f5 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Mon, 21 Jul 2008 14:26:03 +0000 Subject: [PATCH] Added epicsShare* where necessary for win32 builds. --- src/dbStatic/devSup.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/dbStatic/devSup.h b/src/dbStatic/devSup.h index a71102ad4..0104260b4 100644 --- a/src/dbStatic/devSup.h +++ b/src/dbStatic/devSup.h @@ -17,6 +17,8 @@ #ifndef INCdevSuph #define INCdevSuph 1 +#include "shareLib.h" + #ifdef __cplusplus extern "C" { typedef long (*DEVSUPFUN)(void*); /* ptr to device support function*/ @@ -56,9 +58,8 @@ typedef struct dsxt { /* device support extension table */ /* These are defined in src/misc/iocInit.c */ -extern struct dsxt devSoft_DSXT; -extern void devExtend(dsxt *pdsxt); - +epicsShareDef struct dsxt devSoft_DSXT; +epicsShareFunc void devExtend(dsxt *pdsxt); #ifdef __cplusplus } /* extern "C" */