📄 includes.h
字号:
#ifndef _INCLUDES_H
#define _INCLUDES_H
#include <winsock2.h> // htons() htonl() and other helper functions
#pragma comment (lib,"WS2_32.lib")
#include <windows.h>
#include <Iphlpapi.h>// Used to find information about the device such as default gateway and hardware addresses
#pragma comment (lib,"Iphlpapi.lib")
#include <Pcap/pcap.h> // WinPCap
#pragma comment (lib,"wpcap.lib") // Link to pcap
#include <iostream> //sprintf()
using namespace std;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -