myxlib/src/myx/core/config.hpp

18 lines
334 B
C++

#ifndef MYX_CORE_CONFIG_HPP_
#define MYX_CORE_CONFIG_HPP_
#pragma once
#if defined( _WIN32 ) && defined( MYXLIB_SHARED_LIB )
#ifdef myxlib_EXPORTS
#define MYXLIB_API __declspec( dllexport )
#else
#define MYXLIB_API __declspec( dllimport )
#endif
#else
#define MYXLIB_API
#endif
#define MYXLIB_INLINE
#endif // MYX_CORE_CONFIG_HPP_