From 3b9ca3630110c705f31173e46cff2f484c66f825 Mon Sep 17 00:00:00 2001 From: Matej Sekoranja Date: Thu, 13 Feb 2014 19:25:46 +0100 Subject: [PATCH] v3ioc: added DLL export in syncChannelFind.h --- pvAccessApp/v3ioc/syncChannelFind.h | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/pvAccessApp/v3ioc/syncChannelFind.h b/pvAccessApp/v3ioc/syncChannelFind.h index 75bd48a..9477c54 100644 --- a/pvAccessApp/v3ioc/syncChannelFind.h +++ b/pvAccessApp/v3ioc/syncChannelFind.h @@ -12,14 +12,25 @@ * This is an implementation of ChannelFind that is appropriate for all channel * providers that can synchronously determine if the provider has the channel. */ -#ifndef SYNCCHANNElFIND_H -#define SYNCCHANNElFIND_H +#ifndef SYNCCHANNELFIND_H +#define SYNCCHANNELFIND_H + #include #include #include #include +#ifdef epicsExportSharedSymbols +# define syncChannelFindEpicsExportSharedSymbols +# undef epicsExportSharedSymbols +#endif #include +#ifdef syncChannelFindEpicsExportSharedSymbols +# define epicsExportSharedSymbols +# undef syncChannelFindEpicsExportSharedSymbols +#endif + +#include #include @@ -53,4 +64,4 @@ private: }} -#endif /* SYNCCHANNElFIND_H */ +#endif /* SYNCCHANNELFIND_H */