#ifndef RTFLASH_MACROS_H
#define RTFLASH_MACROS_H
/// \file rtflash-macros.h
/// \brief Макросы
#ifdef _WIN32
#ifdef RTFLASH_EXPORTS
#define RTFLASH_API __declspec(dllexport)
#else
#define RTFLASH_API __declspec(dllimport)
#endif
#else
#define RTFLASH_API __attribute__((visibility("default")))
#endif

#ifdef __cplusplus
#define RTFLASH_NULL_PTR nullptr
#else
#define RTFLASH_NULL_PTR NULL
#endif

#endif // RTFLASH_MACROS_H
