chromium/components/captive_portal/core/captive_portal_export.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_CAPTIVE_PORTAL_CORE_CAPTIVE_PORTAL_EXPORT_H_
#define COMPONENTS_CAPTIVE_PORTAL_CORE_CAPTIVE_PORTAL_EXPORT_H_

#if defined(COMPONENT_BUILD)
#if defined(WIN32)

#if defined(CAPTIVE_PORTAL_IMPLEMENTATION)
#define CAPTIVE_PORTAL_EXPORT
#else
#define CAPTIVE_PORTAL_EXPORT
#endif  // defined(CAPTIVE_PORTAL_IMPLEMENTATION)

#else  // defined(WIN32)
#if defined(CAPTIVE_PORTAL_IMPLEMENTATION)
#define CAPTIVE_PORTAL_EXPORT
#else
#define CAPTIVE_PORTAL_EXPORT
#endif
#endif

#else  // defined(COMPONENT_BUILD)
#define CAPTIVE_PORTAL_EXPORT
#endif

#endif  // COMPONENTS_CAPTIVE_PORTAL_CORE_CAPTIVE_PORTAL_EXPORT_H_