IncomingDlg.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "AVDConf.h"
  3. #include "defines.h"
  4. #include "IncomingDlg.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CIncomingDlg dialog
  12. CIncomingDlg::CIncomingDlg(CWnd* pParent /*=NULL*/)
  13. : CDialog(CIncomingDlg::IDD, pParent)
  14. {
  15. //{{AFX_DATA_INIT(CIncomingDlg)
  16. // NOTE: the ClassWizard will add member initialization here
  17. //}}AFX_DATA_INIT
  18. }
  19. void CIncomingDlg::DoDataExchange(CDataExchange* pDX)
  20. {
  21. CDialog::DoDataExchange(pDX);
  22. //{{AFX_DATA_MAP(CIncomingDlg)
  23. // NOTE: the ClassWizard will add DDX and DDV calls here
  24. //}}AFX_DATA_MAP
  25. }
  26. BEGIN_MESSAGE_MAP(CIncomingDlg, CDialog)
  27. //{{AFX_MSG_MAP(CIncomingDlg)
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CIncomingDlg message handlers
  32. BOOL CIncomingDlg::OnInitDialog() 
  33. {
  34. CDialog::OnInitDialog();
  35. SESSION_DATA *pData;
  36. pData = (SESSION_DATA *)GetWindowLong (::GetWindow(m_hWnd, GW_OWNER), GWL_USERDATA);
  37. // Display the caller name and ID.
  38. SetDlgItemTextW (m_hWnd, IDC_CALLERNAME, pData->bstrName);
  39. SetDlgItemTextW (m_hWnd, IDC_CALLERID, pData->bstrURI);
  40. return TRUE;  // return TRUE unless you set the focus to a control
  41.               // EXCEPTION: OCX Property Pages should return FALSE
  42. }