?? incomingdlg.cpp
字號:
#include "stdafx.h"
#include "AVDConf.h"
#include "defines.h"
#include "IncomingDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CIncomingDlg dialog
CIncomingDlg::CIncomingDlg(CWnd* pParent /*=NULL*/)
: CDialog(CIncomingDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CIncomingDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CIncomingDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CIncomingDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CIncomingDlg, CDialog)
//{{AFX_MSG_MAP(CIncomingDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIncomingDlg message handlers
BOOL CIncomingDlg::OnInitDialog()
{
CDialog::OnInitDialog();
SESSION_DATA *pData;
pData = (SESSION_DATA *)GetWindowLong (::GetWindow(m_hWnd, GW_OWNER), GWL_USERDATA);
// Display the caller name and ID.
SetDlgItemTextW (m_hWnd, IDC_CALLERNAME, pData->bstrName);
SetDlgItemTextW (m_hWnd, IDC_CALLERID, pData->bstrURI);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -