87 lines
1.8 KiB
C++
87 lines
1.8 KiB
C++
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved
|
|
//
|
|
// GenericUCP.cpp : Defines the class behaviors for the application.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "GenericUCP.h"
|
|
#include "GenericUCPDlg.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CGenericUCPApp
|
|
|
|
BEGIN_MESSAGE_MAP(CGenericUCPApp, CWinApp)
|
|
//{{AFX_MSG_MAP(CGenericUCPApp)
|
|
//}}AFX_MSG_MAP
|
|
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CGenericUCPApp construction
|
|
|
|
CGenericUCPApp::CGenericUCPApp()
|
|
{
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// The one and only CGenericUCPApp object
|
|
|
|
CGenericUCPApp theApp;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CGenericUCPApp initialization
|
|
|
|
BOOL CGenericUCPApp::InitInstance()
|
|
{
|
|
|
|
AfxInitRichEdit();
|
|
|
|
AfxEnableControlContainer();
|
|
|
|
CCommandLineInfo cmdInfo;
|
|
ParseCommandLine(cmdInfo);
|
|
|
|
if (cmdInfo.m_bRunEmbedded || cmdInfo.m_bRunAutomated)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
if(CoInitialize(NULL)!=S_OK){
|
|
TRACE(L"CoInitialize failed\n");
|
|
return FALSE; // Return if COM initialization failed
|
|
}
|
|
|
|
// Standard initialization
|
|
|
|
CGenericUCPDlg dlg;
|
|
m_pMainWnd = &dlg;
|
|
|
|
dlg.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 CGenericUCPApp::ExitInstance()
|
|
{
|
|
CoUninitialize();// Uninitialize the COM
|
|
return 0;
|
|
}
|