rtcoutgoing.cpp

来自「再贡献一份基于osip 协议栈的用户代理」· C++ 代码 · 共 107 行

CPP
107
字号
/******************************************************>
 * Copyright (c) 2001 Microsoft Corporation. 
 * All rights reserved.
 *
 * Copyright (c) 2005 enum.at
 * All rights reserved.
 *
 * @Abstract: RTCOutgoing.cpp
 * ---------- [ Source Definition File]
 * 
 *
 *
 ******************************************************/



#include "stdafx.h"
#include "RTCOutgoing.h"
#include "RTCOutgoingDlg.h"
#include "CDenum_jprs1.h"

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

/**********************************************************
//@CRTCOutGoingApp MessageMap
//
//*********************************************************/


BEGIN_MESSAGE_MAP(CRTCOutgoingApp, CWinApp)
	//{{AFX_MSG_MAP(CRTCOutgoingApp)

	//}}AFX_MSG
	ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()


/**********************************************************
//@CRTCOutgoingApp()
//
//@Description
//  
//  Constructor
//
//@Args In:     Void
//@Args Out:    Void
//
//
//*********************************************************/
CRTCOutgoingApp::CRTCOutgoingApp()
{
	//
	// No initialization required
	//
}

/**********************************************************
//@Declaration of the OutGoing App CRTCOutGoingApp
//
//
//*********************************************************/


CRTCOutgoingApp theApp;

/**********************************************************
//@InitInstance()
//
//@Description
//  
//  App Initializer
//
//@Args In:     Void
//@Args Out:    Void
//
//
//*********************************************************/
BOOL CRTCOutgoingApp::InitInstance()
{
	//klaus
		InitCommonControls();

	CWinApp::InitInstance();
//end klaus


	AfxEnableControlContainer();


	CRTCOutgoingDlg dlg;
	m_pMainWnd = &dlg;

	//
	// we do not handle the response from
	// the dialog  RTCIncomingDlg 
	//

	INT_PTR nResponse = dlg.DoModal();


	return FALSE;
}

⌨️ 快捷键说明

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