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
2.0 KiB

//Copyright 2020 Siemens Digital Industries Software
//==================================================
//Copyright $2020.
//Siemens Product Lifecycle Management Software Inc.
//All Rights Reserved.
//==================================================
//Copyright 2020 Siemens Digital Industries Software
/**
@file
This file contains the declaration for the Dispatch Library Fnd0emailpolling
*/
#include <common/library_indicators.h>
#ifdef EXPORTLIBRARY
#define EXPORTLIBRARY something else
#error ExportLibrary was already defined
#endif
#define EXPORTLIBRARY libFnd0emailpolling
#if !defined(LIBFND0EMAILPOLLING) && !defined(IPLIB)
# error IPLIB or LIBFND0EMAILPOLLING is not defined
#endif
/* Handwritten code should use FND0EMAILPOLLING_API, not FND0EMAILPOLLINGEXPORT */
#define FND0EMAILPOLLING_API FND0EMAILPOLLINGEXPORT
#if IPLIB==libFnd0emailpolling || defined(LIBFND0EMAILPOLLING)
# if defined(__lint)
# define FND0EMAILPOLLINGEXPORT __export(Fnd0emailpolling)
# define FND0EMAILPOLLINGGLOBAL extern __global(Fnd0emailpolling)
# define FND0EMAILPOLLINGPRIVATE extern __private(Fnd0emailpolling)
# elif defined(_WIN32)
# define FND0EMAILPOLLINGEXPORT __declspec(dllexport)
# define FND0EMAILPOLLINGGLOBAL extern __declspec(dllexport)
# define FND0EMAILPOLLINGPRIVATE extern
# else
# define FND0EMAILPOLLINGEXPORT
# define FND0EMAILPOLLINGGLOBAL extern
# define FND0EMAILPOLLINGPRIVATE extern
# endif
#else
# if defined(__lint)
# define FND0EMAILPOLLINGEXPORT __export(Fnd0emailpolling)
# define FND0EMAILPOLLINGGLOBAL extern __global(Fnd0emailpolling)
# elif defined(_WIN32) && !defined(WNT_STATIC_LINK)
# define FND0EMAILPOLLINGEXPORT __declspec(dllimport)
# define FND0EMAILPOLLINGGLOBAL extern __declspec(dllimport)
# else
# define FND0EMAILPOLLINGEXPORT
# define FND0EMAILPOLLINGGLOBAL extern
# endif
#endif