📄 ipadddel.h
字号:
/////////////////////////////////////////////////////////////////
// CREDIT: These definitions taken from an article by Bill Nolde
//
//---------------------------------------------
// myhlpapi.h
// Example program demonstrating how to add and delete an IP address
// in Win2K to any adapter installed.
// Bill Nolde 1/8/2000
// billnolde@ieee.org
//-------------------------------
// This structure is used for listing all IP addresses
typedef struct ip_z {
char ip_address[16];
char sub_netmask[16];
} ip_entry, *pip_entry;
int GetAllIPAddresses (pip_entry ppe , int maxents );
int IPAddAddress (char *ip_to_add, char *ip_netmask);
int IPDeleteAddress (char *iptodelete );
/////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -