Socket 开发头文件及库文件

 

#include "Socket.h"
#include "GetProfileSet.h"
#include 
#include 
#include 
#include 
#include 

 

1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__WSAGetLastError@0
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__ioctlsocket@12
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__htons@4
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__getsockopt@20
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__recv@16
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__connect@12
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__socket@12
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__send@16
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__inet_pton@12
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__shutdown@8
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__select@20
1>Socket.obj : error LNK2001: 无法解析的外部符号 __imp__accept@12

编译通过,链接失败。

原因:

有相关函数声明,未导入相关库文件,使用静态链接方式,增加lib库的使用,编译通过。

#include "Socket.h"
#include "GetProfileSet.h"
#include 
#include 
#include 
#include 
#include 

#pragma comment(lib, "ws2_32.lib")

你可能感兴趣的:(Socket)