⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtcoutgoing.cpp

📁 再贡献一份基于osip 协议栈的用户代理
💻 CPP
字号:
/******************************************************>
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -