📄 tdial.cpp
字号:
// tDial.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "tDial.h"
#include "tDialDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CtDialApp
BEGIN_MESSAGE_MAP(CtDialApp, CWinApp)
//{{AFX_MSG_MAP(CtDialApp)
//}}AFX_MSG
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CtDialApp construction
CtDialApp::CtDialApp()
{
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CtDialApp object
CtDialApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CtDialApp initialization
BOOL CtDialApp::InitInstance()
{
CtDialDlg dlgDial;
// Initialize the line
if( TFAILED(::TfxLineInitialize(&dlgDial)) ) // DONE: Added dialog as handler of line requests
{
::AfxMessageBox(IDS_CANT_INIT_TAPI);
return FALSE;
}
m_pMainWnd = &dlgDial;
dlgDial.DoModal();
// Since the dialog has been closed, return FALSE so that we exit the
// application, rather than start the application's message pump.
return FALSE;
}
int CtDialApp::ExitInstance()
{
::TfxLineShutdown();
return CWinApp::ExitInstance();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -