汽车后备箱液压支撑杆:vc中遇到一个错误:E:\Sample\MainFrm.cpp(214) : fatal error C1001: INTERNAL COMPILER ERROR

来源:百度文库 编辑:高校问答 时间:2024/05/05 22:45:57
我编了一个小的socket客户端程序,结果出现一个错误:E:\Sample\MainFrm.cpp(214) : fatal error C1001: INTERNAL COMPILER ERROR,谁能告诉我这是怎么回事??

出现问题的部分的原程序代码如下:
//创建Socket并联接到服务器
CRequestSocket* CMainFrame::ConnectServer
{
//创建Socket
CRequestSocket* pSocket = new CRequestSocket(this);
if(!(pSocket->Create()))
{
delete pSocket;
MessageBox("创建socket失败!","网络信息",MB_OK);
return NULL;
}

//联接到服务器
if(!pSocket->Connect(m_ServerName, m_PortAddress))
{
delete pSocket;
MessageBox("请求连接服务器失败","网络信息",MB_OK);
return NULL;
}
return pSocket;
}

动态链接库是不是没有添加