全部博文(1293)
发布时间:2015-11-02 14:12:13
VS2010编码winsock程序,出现下面错误: 原因分析: 需要添加下面一句,意思是编译时需要静态添加一个lib文件 #pragma comment(lib,"ws2_32.lib") 参考网址: http://blog.csdn.net/pingd/article/details/15417235......【阅读全文】
发布时间:2014-05-15 10:56:02
转自博客:http://blog.csdn.net/hudaweikevin/article/details/4003353申明全局变量,全局函数一定要在cpp中申明 其他类引用该全局变量就include该cpp的h文件 然后extern一下就好了 否则容易出现该重复定义错误 这个"容易"是如何解释的呢? 例如A.h中如果申明了全局变量int Global; 在B.h中i.........【阅读全文】
发布时间:2014-05-15 10:49:24
转自博客:http://blog.163.com/xhyzdai@126/blog/static/732533112011111544957703error C2065: 'WSASocket' : undeclared identifier error C2065: 'WSABUF' : undeclared identifier error C2065: 'WSARecvFrom' : undeclared identifier error C2065: 'WSASendTo' : undeclared identifier ...... 在创.........【阅读全文】