1manik 0 Newbie Poster

HI, I have one application which is created by Visual C++ Professional edition with using of MFC header and I have one DLL, where is every useful functions. It is possible, taht some data from DLL can be saved in SrnTerm in this command? Because function to read data from card reader is saved in this DLL and I cant find to how variable is it loaded. An I find this commands, where I thnik it would be in. Because this program show this data on listBox. Sorry for my English, but can you help me???

void CReadSRNDlg::OnMessage(WPARAM wParam,LPARAM lParam)
{
	CString ret;
	DWORD	*SrnTerm=(DWORD*)lParam;
	m_poc++;
	ret.Format("%d. SRN=%u, Term.=%u",m_poc,SrnTerm[0],SrnTerm[1]);
	m_listBox.InsertString(0,ret);
	SendToClipB(SrnTerm[0]);  
}