#ifndef UI_DISPLAY_UTIL_DISPLAY_UTIL_EXPORT_H_
#define UI_DISPLAY_UTIL_DISPLAY_UTIL_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
#if defined(DISPLAY_UTIL_IMPLEMENTATION)
#define DISPLAY_UTIL_EXPORT __declspec(dllexport)
#else
#define DISPLAY_UTIL_EXPORT __declspec(dllimport)
#endif
#else
#if defined(DISPLAY_UTIL_IMPLEMENTATION)
#define DISPLAY_UTIL_EXPORT __attribute__((visibility("default")))
#else
#define DISPLAY_UTIL_EXPORT
#endif
#endif
#else
#define DISPLAY_UTIL_EXPORT
#endif
#endif