You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
/*==============================================================================
|
|
Copyright (c) 2009-2010 SIEMENS
|
|
Unpublished - All Rights Reserved
|
|
==============================================================================*/
|
|
|
|
/*
|
|
File Description:
|
|
|
|
The header file that defines the export symbols for the BOOLEANSOLVE library
|
|
*/
|
|
|
|
#include <common/library_indicators.h>
|
|
|
|
#ifdef EXPORTLIBRARY
|
|
#define EXPORTLIBRARY something else
|
|
#error ExportLibrary was already defined
|
|
#endif
|
|
|
|
#define EXPORTLIBRARY libfnd0booleansolve
|
|
|
|
#if !defined(IPLIB)
|
|
# error IPLIB is not defined
|
|
#endif
|
|
|
|
/* Handwritten code should use FND0BOOLEANSOLVE_API, not FND0BOOLEANSOLVEEXPORT */
|
|
|
|
#define FND0BOOLEANSOLVE_API FND0BOOLEANSOLVEEXPORT
|
|
|
|
/* Support FND0BOOLEANSOLVEEXPORT for autogenerated schema/pif code only */
|
|
|
|
#if IPLIB==libfnd0booleansolve
|
|
# if defined(__lint)
|
|
# define FND0BOOLEANSOLVEEXPORT __export(fnd0booleansolve)
|
|
# define FND0BOOLEANSOLVEGLOBAL extern __global(fnd0booleansolve)
|
|
# define FND0BOOLEANSOLVEPRIVATE extern __private(fnd0booleansolve)
|
|
# elif defined(_WIN32)
|
|
# define FND0BOOLEANSOLVEEXPORT __declspec(dllexport)
|
|
# define FND0BOOLEANSOLVEGLOBAL extern __declspec(dllexport)
|
|
# define FND0BOOLEANSOLVEPRIVATE extern
|
|
# else
|
|
# define FND0BOOLEANSOLVEEXPORT
|
|
# define FND0BOOLEANSOLVEGLOBAL extern
|
|
# define FND0BOOLEANSOLVEPRIVATE extern
|
|
# endif
|
|
#else
|
|
# if defined(__lint)
|
|
# define FND0BOOLEANSOLVEEXPORT __export(fnd0booleansolve)
|
|
# define FND0BOOLEANSOLVEGLOBAL extern __global(fnd0booleansolve)
|
|
# elif defined(_WIN32) && !defined(WNT_STATIC_LINK)
|
|
# define FND0BOOLEANSOLVEEXPORT __declspec(dllimport)
|
|
# define FND0BOOLEANSOLVEGLOBAL extern __declspec(dllimport)
|
|
# else
|
|
# define FND0BOOLEANSOLVEEXPORT
|
|
# define FND0BOOLEANSOLVEGLOBAL extern
|
|
# endif
|
|
#endif
|
|
|
|
|