SCREENSAFE.CPP
上传用户:trhysrzt
上传日期:2022-03-19
资源大小:9454k
文件大小:2k
源码类别:

屏幕保护

开发平台:

Visual C++

  1. // ScreenSafe.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ScreenSafe.h"
  5. #include "ScreenSafeDlg.h"
  6. #include "MyWnd.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #endif
  10. // CScreenSafeApp
  11. BEGIN_MESSAGE_MAP(CScreenSafeApp, CWinApp)
  12. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  13. END_MESSAGE_MAP()
  14. // CScreenSafeApp construction
  15. CScreenSafeApp::CScreenSafeApp()
  16. {
  17. // TODO: add construction code here,
  18. // Place all significant initialization in InitInstance
  19. }
  20. // The one and only CScreenSafeApp object
  21. CScreenSafeApp theApp;
  22. // CScreenSafeApp initialization
  23. BOOL CScreenSafeApp::InitInstance()
  24. {
  25. // InitCommonControls() is required on Windows XP if an application
  26. // manifest specifies use of ComCtl32.dll version 6 or later to enable
  27. // visual styles.  Otherwise, any window creation will fail.
  28. InitCommonControls();
  29. CWinApp::InitInstance();
  30. AfxEnableControlContainer();
  31. /*
  32. CScreenSafeDlg dlg;
  33. m_pMainWnd = &dlg;
  34. INT_PTR nResponse = dlg.DoModal();
  35. if (nResponse == IDOK)
  36. {
  37. // TODO: Place code here to handle when the dialog is
  38. //  dismissed with OK
  39. }
  40. else if (nResponse == IDCANCEL)
  41. {
  42. // TODO: Place code here to handle when the dialog is
  43. //  dismissed with Cancel
  44. }
  45. // Since the dialog has been closed, return FALSE so that we exit the
  46. //  application, rather than start the application's message pump.
  47. return FALSE;
  48. */
  49. //#ifdef _AFXDLL
  50. // Enable3dControls();
  51. // Enable3dControlStatic();
  52. CMyWnd* pWnd=new CMyWnd;
  53. pWnd->Create();
  54. m_pMainWnd=pWnd;
  55. return true;
  56. }