// %pacpus:license{ // This file is part of the PACPUS framework distributed under the // CECILL-C License, Version 1.0. // %pacpus:license} /// @file /// @author Marek Kurdej /// @date 21 June, 2013 /// @version $Id$ /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved. /// @brief Configuration file for PacpusTools library. /// /// @todo Detailed description. #ifndef DEF_PACPUS_PACPUSTOOLSCONFIG_H #define DEF_PACPUS_PACPUSTOOLSCONFIG_H // Export macro for DbitePlayer DLL for Windows only #ifdef WIN32 # ifdef PACPUS_TOOLS_EXPORTS // make DLL # define PACPUS_TOOLS_API __declspec(dllexport) # else // use DLL # define PACPUS_TOOLS_API __declspec(dllimport) # endif #else // On other platforms, simply ignore this # define PACPUS_TOOLS_API #endif #endif // DEF_PACPUS_PACPUSTOOLSCONFIG_H