代码中有这样一段
if ((m_UDPSndrSocket = WSASocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP, NULL, 0, WSA_FLAG_OVERLAPPED)) == INVALID_SOCKET)
{
AfxMessageBox("Failed to create UDPSocket");
return FALSE;
}
然后出现了这样的错误
error C2065: 'WSASocket' : undeclared identifier
error C2065: 'WSA_FLAG_OVERLAPPED' : undeclared identifier
据说在 StdAfx.h 中加入 #include 就可以了,但是这样试了之后出现了更多的错误,不知道应该怎么解决。
(原来的 StdAfx.h 中有 #include )
求帮忙