⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 receivedata.cpp

📁 用VC++实现矢量地图背景下的实时显示源代码
💻 CPP
字号:
// ReceiveData.cpp : implementation file
//

#include "stdafx.h"
#include "MapApp.h"
#include "ReceiveData.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CReceiveData

CReceiveData::CReceiveData()
{
}

CReceiveData::~CReceiveData()
{
}


// Do not edit the following lines, which are needed by ClassWizard.
#if 0
BEGIN_MESSAGE_MAP(CReceiveData, CAsyncSocket)
	//{{AFX_MSG_MAP(CReceiveData)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()
#endif	// 0

/////////////////////////////////////////////////////////////////////////////
// CReceiveData member functions

void CReceiveData::OnReceive(int nErrorCode) 
{
	// TODO: Add your specialized code here and/or call the base class
	char lpBuf[512];
	int m_length;
	m_length=Receive( lpBuf, 512);//接收信息长度
	//发送消息,激活数据处理函数
	m_view->SendMessage(WM_USER_RECEIVE_DATA,m_length,(LPARAM)lpBuf);
	
//	CAsyncSocket::OnReceive(nErrorCode);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -