⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 asio_config.h

📁 C++ web POSIX framewark
💻 H
字号:
#ifndef CPPCMS_ASIO_CONF_H#define CPPCMS_ASIO_CONF_H#include "config.h"#ifdef __CYGWIN__// Cygwin ASIO works only with win32 sockets#define _WIN32_WINNT 1#define __USE_W32_SOCKETS 1#endif#ifdef USE_BOOST_ASIO#include <boost/asio.hpp>namespace aio = boost::asio;using boost::system::error_code;using boost::system::system_error;#else#include <asio.hpp>namespace aio = asio;using asio::error_code;using asio::system_error;#endifusing aio::ip::tcp;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -