Repository URL to install this package:
|
Version:
2016.3.0.4050 ▾
|
//========================================================================//
// SOURCE CODE LICENSE //
// Copyright 2012 Dassault Systèmes SolidWorks Corporation //
// All rights reserved. //
// This software and related documentation are proprietary to //
// Dassault Systèmes SolidWorks Corporation //
//========================================================================//
// dsinterface_global.h, C++ API export/import declaration
//
#ifndef DSINTERFACE_GLOBAL_H
#define DSINTERFACE_GLOBAL_H
#ifdef DS_WIN
# define DS_DECL_EXPORT __declspec(dllexport)
#else
# define DS_DECL_EXPORT
#endif
#ifdef DS_WIN
# define DS_DECL_IMPORT __declspec(dllimport)
#else
# define DS_DECL_IMPORT
#endif
#ifdef DSINTERFACE_LIB
# define DSINTERFACE_EXPORT DS_DECL_EXPORT
#else
# define DSINTERFACE_EXPORT DS_DECL_IMPORT
#endif
#endif // DSINTERFACE_GLOBAL_H