#ifndef UI_SHELL_DIALOGS_SHELL_DIALOGS_EXPORT_H_
#define UI_SHELL_DIALOGS_SHELL_DIALOGS_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(WIN32)
#if defined(SHELL_DIALOGS_IMPLEMENTATION)
#define SHELL_DIALOGS_EXPORT __declspec(dllexport)
#else
#define SHELL_DIALOGS_EXPORT __declspec(dllimport)
#endif
#else
#if defined(SHELL_DIALOGS_IMPLEMENTATION)
#define SHELL_DIALOGS_EXPORT __attribute__((visibility("default")))
#else
#define SHELL_DIALOGS_EXPORT
#endif
#endif
#else
#define SHELL_DIALOGS_EXPORT
#endif
#endif