#ifndef LOGURU_EXPORT_H #define LOGURU_EXPORT_H #ifdef LOGURU_STATIC_DEFINE # define LOGURU_EXPORT # define LOGURU_NO_EXPORT #else # ifndef LOGURU_EXPORT # ifdef loguru_EXPORTS /* We are building this library */ # define LOGURU_EXPORT __declspec(dllexport) # else /* We are using this library */ # define LOGURU_EXPORT __declspec(dllimport) # endif # endif # ifndef LOGURU_NO_EXPORT # define LOGURU_NO_EXPORT # endif #endif #ifndef LOGURU_DEPRECATED # define LOGURU_DEPRECATED __declspec(deprecated) #endif #ifndef LOGURU_DEPRECATED_EXPORT # define LOGURU_DEPRECATED_EXPORT LOGURU_EXPORT LOGURU_DEPRECATED #endif #ifndef LOGURU_DEPRECATED_NO_EXPORT # define LOGURU_DEPRECATED_NO_EXPORT LOGURU_NO_EXPORT LOGURU_DEPRECATED #endif #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef LOGURU_NO_DEPRECATED # define LOGURU_NO_DEPRECATED # endif #endif #endif /* LOGURU_EXPORT_H */