1 // Copyright 2019 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef QUICHE_COMMON_PLATFORM_API_QUICHE_EXPORT_H_ 6 #define QUICHE_COMMON_PLATFORM_API_QUICHE_EXPORT_H_ 7 8 #include "quiche_platform_impl/quiche_export_impl.h" 9 10 // QUICHE_EXPORT is meant for QUICHE functionality that is built in 11 // Chromium as part of //net/third_party/quiche component, and not fully 12 // contained in headers. It is required for Windows DLL builds to work. 13 #define QUICHE_EXPORT QUICHE_EXPORT_IMPL 14 15 // QUICHE_NO_EXPORT is meant for QUICHE functionality that is either fully 16 // defined in a header, or is built in Chromium as part of tests or tools. 17 #define QUICHE_NO_EXPORT QUICHE_NO_EXPORT_IMPL 18 19 #endif // QUICHE_COMMON_PLATFORM_API_QUICHE_EXPORT_H_ 20