2001-12-19 03:37:07 +00:00
|
|
|
/* $Id: rig_dll.h,v 1.5 2001-12-19 03:37:07 fillods Exp $ */
|
2001-06-12 23:59:21 +00:00
|
|
|
|
|
|
|
|
2001-12-19 03:37:07 +00:00
|
|
|
/*
|
|
|
|
* Temporarily commented out, until cygwin port is sorted out
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
|
2001-06-12 23:59:21 +00:00
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
# if defined(HAMLIB_DLL)
|
|
|
|
# if defined(HAMLIB_STATIC)
|
|
|
|
# undef HAMLIB_STATIC
|
|
|
|
# endif
|
2001-06-15 06:59:47 +00:00
|
|
|
# if defined(ALL_STATIC)
|
|
|
|
# undef ALL_STATIC
|
|
|
|
# endif
|
2001-06-12 23:59:21 +00:00
|
|
|
# endif
|
|
|
|
# undef HAMLIB_IMPEXP
|
2001-12-16 11:14:47 +00:00
|
|
|
# undef BACKEND_IMPEXP
|
2001-06-12 23:59:21 +00:00
|
|
|
# undef HAMLIB_API
|
|
|
|
# undef HAMLIB_EXPORT(type)
|
|
|
|
# undef HAMLIB_EXPORT_VAR(type)
|
2001-12-16 11:14:47 +00:00
|
|
|
# if defined(HAMLIB_DLL) && defined(IN_HAMLIB)
|
2001-06-12 23:59:21 +00:00
|
|
|
/* building a DLL */
|
|
|
|
# define HAMLIB_IMPEXP __declspec(dllexport)
|
2001-12-16 11:14:47 +00:00
|
|
|
# define BACKEND_IMPEXP __declspec(dllexport)
|
2001-06-15 06:59:47 +00:00
|
|
|
# elif defined(HAMLIB_STATIC) || defined(ALL_STATIC)
|
2001-06-12 23:59:21 +00:00
|
|
|
/* building or linking to a static library */
|
2001-06-15 06:59:47 +00:00
|
|
|
# define HAMLIB_IMPEXP
|
2001-12-16 11:14:47 +00:00
|
|
|
# define BACKEND_IMPEXP
|
2001-06-12 23:59:21 +00:00
|
|
|
# else
|
|
|
|
/* linking to the DLL */
|
2001-12-16 11:14:47 +00:00
|
|
|
# define HAMLIB_IMPEXP __declspec(dllimport)
|
|
|
|
# define BACKEND_IMPEXP __declspec(dllexport)
|
2001-06-12 23:59:21 +00:00
|
|
|
# endif
|
|
|
|
# define HAMLIB_API __cdecl
|
|
|
|
# define HAMLIB_EXPORT(type) HAMLIB_IMPEXP type HAMLIB_API
|
|
|
|
# define HAMLIB_EXPORT_VAR(type) HAMLIB_IMPEXP type
|
2001-12-16 11:14:47 +00:00
|
|
|
# define BACKEND_EXPORT(type) BACKEND_IMPEXP type HAMLIB_API
|
|
|
|
# define BACKEND_EXPORT_VAR(type) BACKEND_IMPEXP type
|
2001-06-12 23:59:21 +00:00
|
|
|
#endif
|
|
|
|
|
2001-12-19 03:37:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
# undef BACKEND_EXPORT_VAR(type)
|
|
|
|
# undef HAMLIB_EXPORT_VAR(type)
|
|
|
|
# ifdef DLL_EXPORT
|
|
|
|
# ifdef IN_HAMLIB
|
|
|
|
# define BACKEND_EXPORT_VAR(type) __declspec(dllexport) type
|
|
|
|
# define HAMLIB_EXPORT_VAR(type) __declspec(dllexport) type
|
|
|
|
# else
|
|
|
|
# define BACKEND_EXPORT_VAR(type) __declspec(dllimport) type
|
|
|
|
/* FIXME: HAMLIB_EXPORT_VAR import */
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
/* must be static build, no directive */
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-06-12 23:59:21 +00:00
|
|
|
/* Take care of non-cygwin platforms */
|
|
|
|
#if !defined(HAMLIB_IMPEXP)
|
2001-06-15 06:59:47 +00:00
|
|
|
# define HAMLIB_IMPEXP
|
2001-06-12 23:59:21 +00:00
|
|
|
#endif
|
2001-12-16 11:14:47 +00:00
|
|
|
#if !defined(BACKEND_IMPEXP)
|
|
|
|
# define BACKEND_IMPEXP
|
|
|
|
#endif
|
2001-06-12 23:59:21 +00:00
|
|
|
#if !defined(HAMLIB_API)
|
2001-06-15 06:59:47 +00:00
|
|
|
# define HAMLIB_API
|
2001-06-12 23:59:21 +00:00
|
|
|
#endif
|
|
|
|
#if !defined(HAMLIB_EXPORT)
|
|
|
|
# define HAMLIB_EXPORT(type) HAMLIB_IMPEXP type HAMLIB_API
|
|
|
|
#endif
|
|
|
|
#if !defined(HAMLIB_EXPORT_VAR)
|
|
|
|
# define HAMLIB_EXPORT_VAR(type) HAMLIB_IMPEXP type
|
|
|
|
#endif
|
2001-12-16 11:14:47 +00:00
|
|
|
#if !defined(BACKEND_EXPORT)
|
|
|
|
# define BACKEND_EXPORT(type) BACKEND_IMPEXP type HAMLIB_API
|
|
|
|
#endif
|
|
|
|
#if !defined(BACKEND_EXPORT_VAR)
|
|
|
|
# define BACKEND_EXPORT_VAR(type) BACKEND_IMPEXP type
|
|
|
|
#endif
|