winpe.cpp
上传用户:ch83438830
上传日期:2007-01-01
资源大小:104k
文件大小:4k
源码类别:

文件操作

开发平台:

Visual C++

  1. // winpe.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "winpe.h"
  5. #include "MainFrm.h"
  6. #include "winpeDoc.h"
  7. #include "dumpxview.h"
  8. //#include "importformvw.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CWinpeApp
  16. BEGIN_MESSAGE_MAP(CWinpeApp, CWinApp)
  17. //{{AFX_MSG_MAP(CWinpeApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. //}}AFX_MSG_MAP
  20. // Standard file based document commands
  21. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  22. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  23. // Standard print setup command
  24. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CWinpeApp construction
  28. CWinpeApp::CWinpeApp()
  29. {
  30. // TODO: add construction code here,
  31. // Place all significant initialization in InitInstance
  32. }
  33. /////////////////////////////////////////////////////////////////////////////
  34. // The one and only CWinpeApp object
  35. CWinpeApp theApp;
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CWinpeApp initialization
  38. BOOL CWinpeApp::InitInstance()
  39. {
  40. // Standard initialization
  41. // If you are not using these features and wish to reduce the size
  42. //  of your final executable, you should remove from the following
  43. //  the specific initialization routines you do not need.
  44. #ifdef _AFXDLL
  45. Enable3dControls(); // Call this when using MFC in a shared DLL
  46. #else
  47. Enable3dControlsStatic(); // Call this when linking to MFC statically
  48. #endif
  49. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  50. // Register the application's document templates.  Document templates
  51. //  serve as the connection between documents, frame windows and views.
  52. CSingleDocTemplate* pDocTemplate;
  53. pDocTemplate = new CSingleDocTemplate(
  54. IDR_MAINFRAME,
  55. RUNTIME_CLASS(CWinpeDoc),
  56. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  57. RUNTIME_CLASS(CDumpXView));
  58. AddDocTemplate(pDocTemplate);
  59. // Parse command line for standard shell commands, DDE, file open
  60. CCommandLineInfo cmdInfo;
  61. ParseCommandLine(cmdInfo);
  62. // Dispatch commands specified on the command line
  63. if (!ProcessShellCommand(cmdInfo))
  64. return FALSE;
  65. return TRUE;
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CAboutDlg dialog used for App About
  69. class CAboutDlg : public CDialog
  70. {
  71. public:
  72. CAboutDlg();
  73. // Dialog Data
  74. //{{AFX_DATA(CAboutDlg)
  75. enum { IDD = IDD_ABOUTBOX };
  76. //}}AFX_DATA
  77. // ClassWizard generated virtual function overrides
  78. //{{AFX_VIRTUAL(CAboutDlg)
  79. protected:
  80. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  81. //}}AFX_VIRTUAL
  82. // Implementation
  83. protected:
  84. //{{AFX_MSG(CAboutDlg)
  85. // No message handlers
  86. //}}AFX_MSG
  87. DECLARE_MESSAGE_MAP()
  88. };
  89. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  90. {
  91. //{{AFX_DATA_INIT(CAboutDlg)
  92. //}}AFX_DATA_INIT
  93. }
  94. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  95. {
  96. CDialog::DoDataExchange(pDX);
  97. //{{AFX_DATA_MAP(CAboutDlg)
  98. //}}AFX_DATA_MAP
  99. }
  100. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  101. //{{AFX_MSG_MAP(CAboutDlg)
  102. // No message handlers
  103. //}}AFX_MSG_MAP
  104. END_MESSAGE_MAP()
  105. // App command to run the dialog
  106. void CWinpeApp::OnAppAbout()
  107. {
  108. CAboutDlg aboutDlg;
  109. aboutDlg.DoModal();
  110. }
  111. /////////////////////////////////////////////////////////////////////////////
  112. // CWinpeApp commands