dont use Vis C++ key words under the Cygnus GNU environment

This commit is contained in:
Jeff Hill
1998-03-19 00:04:32 +00:00
parent 49f9a3b462
commit 2163b7e60e
2 changed files with 20 additions and 4 deletions
+10 -2
View File
@@ -65,7 +65,13 @@
#undef epicsShareAPIV
#undef READONLY
#if defined(_WIN32)
/*
* if its WIN32 and it isnt the Cygnus GNU environment
* (I am assuming Borlund and other MS Vis C++ competitors
* support these MS VisC++ defacto standard keywords???? If not
* then we should just switch on defined(_MSC_VER) here)
*/
#if defined(_WIN32) && !defined(__CYGWIN32__)
# if defined(epicsExportSharedSymbols)
# define epicsShareExtern extern __declspec(dllexport)
@@ -90,7 +96,9 @@
# define epicsShareAPIV __cdecl
# define epicsShareDef __declspec(dllexport)
# define READONLY const
/*
* if its the old VAX C Compiler (not DEC C)
*/
#elif defined(VAXC)
/*
+10 -2
View File
@@ -65,7 +65,13 @@
#undef epicsShareAPIV
#undef READONLY
#if defined(_WIN32)
/*
* if its WIN32 and it isnt the Cygnus GNU environment
* (I am assuming Borlund and other MS Vis C++ competitors
* support these MS VisC++ defacto standard keywords???? If not
* then we should just switch on defined(_MSC_VER) here)
*/
#if defined(_WIN32) && !defined(__CYGWIN32__)
# if defined(epicsExportSharedSymbols)
# define epicsShareExtern extern __declspec(dllexport)
@@ -90,7 +96,9 @@
# define epicsShareAPIV __cdecl
# define epicsShareDef __declspec(dllexport)
# define READONLY const
/*
* if its the old VAX C Compiler (not DEC C)
*/
#elif defined(VAXC)
/*