1 Star 0 Fork 10

範輝/MsQuic

forked from Gitee 极速下载/MsQuic 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
precomp.h 2.01 KB
一键复制 编辑 原始数据 按行查看 历史
/*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#pragma warning(disable:4100) // unreferenced formal parameter
#pragma warning(disable:4189) // local variable is initialized but not referenced
#pragma warning(disable:4200) // nonstandard extension used: bit field types other than int
#pragma warning(disable:4201) // nonstandard extension used: nameless struct/union
#pragma warning(disable:4204) // nonstandard extension used: non-constant aggregate initializer
#pragma warning(disable:4214) // nonstandard extension used: zero-sized array in struct/union
#pragma warning(disable:4324) // structure was padded due to alignment specifier
#pragma warning(disable:26035) // Precondition Nulltermination Violation
#pragma warning(disable:26451) // Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value.
#pragma warning(disable:28931) // Unused Assignment
//
// Platform or Public Headers.
//
#include "quic_platform.h"
#include "quic_datapath.h"
#include "quic_storage.h"
#include "quic_tls.h"
#include "quic_versions.h"
#include "quic_var_int.h"
#include "quic_trace.h"
#include "msquic.h"
#include "msquicp.h"
#if defined(__cplusplus)
extern "C" {
#endif
//
// Internal Core Headers.
//
#include "quicdef.h"
#include "cid.h"
#include "path.h"
#include "transport_params.h"
#include "lookup.h"
#include "timer_wheel.h"
#include "settings.h"
#include "library.h"
#include "binding.h"
#include "api.h"
#include "registration.h"
#include "session.h"
#include "range.h"
#include "recv_buffer.h"
#include "send_buffer.h"
#include "frame.h"
#include "packet.h"
#include "sent_packet_metadata.h"
#include "worker.h"
#include "ack_tracker.h"
#include "packet_space.h"
#include "congestion_control.h"
#include "loss_detection.h"
#include "send.h"
#include "operation.h"
#include "crypto.h"
#include "stream.h"
#include "stream_set.h"
#include "datagram.h"
#include "connection.h"
#include "packet_builder.h"
#include "listener.h"
#if defined(__cplusplus)
}
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/kt10/MsQuic.git
git@gitee.com:kt10/MsQuic.git
kt10
MsQuic
MsQuic
master

搜索帮助