xref: /aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/platform/api/quic_export.h (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2016 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_QUIC_PLATFORM_API_QUIC_EXPORT_H_
6 #define QUICHE_QUIC_PLATFORM_API_QUIC_EXPORT_H_
7 
8 #include "quiche/common/platform/api/quiche_export.h"
9 
10 // QUIC_EXPORT is not meant to be used.
11 #define QUIC_EXPORT QUICHE_EXPORT
12 
13 // QUIC_EXPORT_PRIVATE is meant for QUIC functionality that is built in Chromium
14 // as part of //net, and not fully contained in headers.
15 #define QUIC_EXPORT_PRIVATE QUICHE_EXPORT
16 
17 // QUIC_NO_EXPORT is meant for QUIC functionality that is either fully defined
18 // in a header, or is built in Chromium as part of tests or tools.
19 #define QUIC_NO_EXPORT QUICHE_NO_EXPORT
20 
21 #endif  // QUICHE_QUIC_PLATFORM_API_QUIC_EXPORT_H_
22