removed extern from epicsShareDef because strange mysteries

persist with the microsoft compiler: sometines extern is required
with the instantiation and other times not ...
This commit is contained in:
Jeff Hill
2000-04-27 17:27:46 +00:00
parent a7b7c7cf16
commit 22fdbb1913

View File

@@ -115,9 +115,14 @@
* does not match their documentation.
*/
# if defined(EPICS_DLL_NO) /* this indicates that we are not building a DLL */
# define epicsShareDef extern
# define epicsShareDef
# else
# define epicsShareDef __declspec(dllexport) extern
/*
* strange mysteries arrise when using this __declspec(dllexport):
* sometimes we must use extern in front of this and other times not.
* This varies with different declarations.
*/
# define epicsShareDef __declspec(dllexport)
# endif
# define READONLY const
/*