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.
62 lines
2.1 KiB
62 lines
2.1 KiB
/*HEAD LIBMESINTEG_EXPORTS HHH CMTMESINTEG */
|
|
/*=============================================================================
|
|
Copyright (c) 2008 Unigraphics Solutions Inc.
|
|
Unpublished - All rights reserved
|
|
===============================================================================
|
|
File Description:
|
|
|
|
The header file that defines the export symbols for the
|
|
CMTMESINTEG library
|
|
|
|
===============================================================================
|
|
Date Name Description
|
|
$HISTORY$
|
|
============================================================================*/
|
|
|
|
#include <common/library_indicators.h>
|
|
|
|
#ifdef EXPORTLIBRARY
|
|
#define EXPORTLIBRARY something else
|
|
#error ExportLibrary was already defined
|
|
#endif
|
|
|
|
#define EXPORTLIBRARY libmesinteg
|
|
|
|
#if !defined(IPLIB)
|
|
# error IPLIB is not defined
|
|
#endif
|
|
|
|
/* Handwritten code should use CMTMESINTEG_API, not CMTMESINTEGEXPORT */
|
|
|
|
#define MESINTEG_API CMTMESINTEGEXPORT
|
|
|
|
/* Support CMTMESINTEGEXPORT for autogenerated schema/pif code only */
|
|
|
|
#if IPLIB==libmesinteg
|
|
# if defined(__lint)
|
|
# define CMTMESINTEGEXPORT __export(cmtmesinteg)
|
|
# define CMTMESINTEGGLOBAL extern __global(cmtmesinteg)
|
|
# define CMTMESINTEGPRIVATE extern __private(cmtmesinteg)
|
|
# elif defined(_WIN32)
|
|
# define CMTMESINTEGEXPORT __declspec(dllexport)
|
|
# define CMTMESINTEGGLOBAL extern __declspec(dllexport)
|
|
# define CMTMESINTEGPRIVATE extern
|
|
# else
|
|
# define CMTMESINTEGEXPORT
|
|
# define CMTMESINTEGGLOBAL extern
|
|
# define CMTMESINTEGPRIVATE extern
|
|
# endif
|
|
#else
|
|
# if defined(__lint)
|
|
# define CMTMESINTEGEXPORT __export(cmtmesinteg)
|
|
# define CMTMESINTEGGLOBAL extern __global(cmtmesinteg)
|
|
# elif defined(_WIN32) && !defined(WNT_STATIC_LINK)
|
|
# define CMTMESINTEGEXPORT __declspec(dllimport)
|
|
# define CMTMESINTEGGLOBAL extern __declspec(dllimport)
|
|
# else
|
|
# define CMTMESINTEGEXPORT
|
|
# define CMTMESINTEGGLOBAL extern
|
|
# endif
|
|
#endif
|
|
|