testtoolsconn/stat/desktop/source/desktop/src/statdesktop.cpp
changeset 0 3da2a79470a7
equal deleted inserted replaced
-1:000000000000 0:3da2a79470a7
       
     1 /*
       
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 #include "stdafx.h"
       
    23 #include "STATDesktop.h"
       
    24 #include "STATDesktopDlg.h"
       
    25 
       
    26 #ifdef _DEBUG
       
    27 #define new DEBUG_NEW
       
    28 #undef THIS_FILE
       
    29 static char THIS_FILE[] = __FILE__;
       
    30 #endif
       
    31 
       
    32 /////////////////////////////////////////////////////////////////////////////
       
    33 // CSTATDesktopApp
       
    34 
       
    35 BEGIN_MESSAGE_MAP(CSTATDesktopApp, CWinApp)
       
    36 	//{{AFX_MSG_MAP(CSTATDesktopApp)
       
    37 	//}}AFX_MSG
       
    38 	ON_COMMAND(ID_HELP, CWinApp::OnHelp)
       
    39 END_MESSAGE_MAP()
       
    40 
       
    41 /////////////////////////////////////////////////////////////////////////////
       
    42 // The one and only CSTATDesktopApp object
       
    43 
       
    44 CSTATDesktopApp theApp;
       
    45 
       
    46 /////////////////////////////////////////////////////////////////////////////
       
    47 // CSTATDesktopApp initialization
       
    48 
       
    49 BOOL CSTATDesktopApp::InitInstance()
       
    50 {
       
    51 	CSTATDesktopDlg dlg;
       
    52 	dlg.DoModal();
       
    53 	return FALSE;
       
    54 }