/** * * Distributed under the UTC Heudiascy Pacpus License, Version 1.0. * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved. * * See the LICENSE file for more information or a copy at: * http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt * */ #ifndef DEF_PACPUS_FILELIBCONFIG_H #define DEF_PACPUS_FILELIBCONFIG_H // Export macro for FileLib DLL for Windows only #ifdef WIN32 # ifdef FILELIB_EXPORTS // make DLL # define FILELIB_API __declspec(dllexport) # else // use DLL # define FILELIB_API __declspec(dllimport) # endif #else // On other platforms, simply ignore this # define FILELIB_API #endif #endif // DEF_PACPUS_FILELIBCONFIG_H