undefined reference to winmain_a reference to「建议收藏」

undefined reference to winmain_a reference to「建议收藏」#include#include#include#defineSERVER_PORT8082#pragmacomment(lib,”ws2_32″)/*关于WSAStartup方法和WSACl

#include <iostream>
#include <winsock2.h>
#include <stdio.h>
#define SERVER_PORT 8082
#pragma comment(lib, "ws2_32")
/*
关于WSAStartup方法和WSACleanup方法引用出错的解决:
	错误:
	编译的时候出现 
	undefined reference to `__imp_WSAStartup'
	undefined reference to `__imp_WSACleanup'
	在一般编译器中不会直接连接编译wsock动态库,需要手动添加库
	首先可以尝试代码中直接引入动态库,#pragam comment(lib,"ws2_32");
	如果不行再手动添加库
	在vc中,点项目(project-->project option)在makefile中输入-L"ws2_32" 
	在dvc C++中点击工具(Tool)-->编译选项(Compile Option)在编译命令框中输入-lwsokt32
*/
using namespace std; 
int main()
{ 
	int produrce_Step = 0;
	WORD winSocketVersion;
	WSADATA wsaDATA;
	SOCKET listen_Socket,server_Sokcet;
	struct sockaddr_in client_socket_addr;  //客户端地址信息 
	struct sockaddr_in ser_socket_addr;  	//服务器端地址信息 
	winSocketVersion = MAKEWORD(2,2);
	int return_num;
	//WinSocket 初始化 
	return_num = WSAStartup(winSocketVersion,&wsaDATA);
	if(return_num!=0){
		cout<<"WSAStartup() failed!"<<endl;
		return 0; 
	} 
	//确认支持winsocket版本2.2 
	if(LOBYTE(wsaDATA.wVersion)!=2||HIBYTE(wsaDATA.wVersion)!=2){
		WSACleanup();
		cout<<"Invalid WinSockt Version!"<<endl;
		return 0;
	}
	produrce_Step ++;
	cout<<produrce_Step<<"***Initial WinSocket Successfully!"<<endl;
	
	return 0;
}

undefined reference to winmain_a reference to「建议收藏」

今天的文章undefined reference to winmain_a reference to「建议收藏」分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/71973.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注