test.cpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // test.cpp : 定义应用程序的类行为。
  2. //
  3. #include "stdafx.h"
  4. #include "test.h"
  5. #include "testDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. #include "lyfzLoadLibrary.h"
  10. // CtestApp
  11. BEGIN_MESSAGE_MAP(CtestApp, CWinApp)
  12. ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
  13. END_MESSAGE_MAP()
  14. // CtestApp 构造
  15. CtestApp::CtestApp()
  16. {
  17. // 支持重新启动管理器
  18. m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
  19. // TODO: 在此处添加构造代码,
  20. // 将所有重要的初始化放置在 InitInstance 中
  21. }
  22. // 唯一的一个 CtestApp 对象
  23. CtestApp theApp;
  24. // CtestApp 初始化
  25. BOOL CtestApp::InitInstance()
  26. {
  27. // 如果一个运行在 Windows XP 上的应用程序清单指定要
  28. // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
  29. //则需要 InitCommonControlsEx()。否则,将无法创建窗口。
  30. INITCOMMONCONTROLSEX InitCtrls;
  31. InitCtrls.dwSize = sizeof(InitCtrls);
  32. // 将它设置为包括所有要在应用程序中使用的
  33. // 公共控件类。
  34. InitCtrls.dwICC = ICC_WIN95_CLASSES;
  35. InitCommonControlsEx(&InitCtrls);
  36. CWinApp::InitInstance();
  37. if ( lyfzLibrary::LoadMD5Libaray() )
  38. {
  39. BYTE by[33] = {0};
  40. //lyfzLibrary::g_PtrGetStringMD5("AT中国123",by, 33);
  41. //memset(by, 0, 33);
  42. lyfzLibrary::g_PtrGetFileMD5("D:\\0.dat", by, 33);
  43. //OutputDebugString(by);
  44. memset(by, 0, 33);
  45. }
  46. AfxEnableControlContainer();
  47. // 创建 shell 管理器,以防对话框包含
  48. // 任何 shell 树视图控件或 shell 列表视图控件。
  49. CShellManager *pShellManager = new CShellManager;
  50. // 标准初始化
  51. // 如果未使用这些功能并希望减小
  52. // 最终可执行文件的大小,则应移除下列
  53. // 不需要的特定初始化例程
  54. // 更改用于存储设置的注册表项
  55. // TODO: 应适当修改该字符串,
  56. // 例如修改为公司或组织名
  57. SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
  58. CtestDlg dlg;
  59. m_pMainWnd = &dlg;
  60. INT_PTR nResponse = dlg.DoModal();
  61. if (nResponse == IDOK)
  62. {
  63. // TODO: 在此放置处理何时用
  64. // “确定”来关闭对话框的代码
  65. }
  66. else if (nResponse == IDCANCEL)
  67. {
  68. // TODO: 在此放置处理何时用
  69. // “取消”来关闭对话框的代码
  70. }
  71. // 删除上面创建的 shell 管理器。
  72. if (pShellManager != NULL)
  73. {
  74. delete pShellManager;
  75. }
  76. // 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
  77. // 而不是启动应用程序的消息泵。
  78. return FALSE;
  79. }