GetEncrypInfo.cpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. // GetEncrypInfo.cpp : 定义应用程序的类行为。
  2. //
  3. #include "stdafx.h"
  4. #include "GetEncrypInfo.h"
  5. #include "GetEncrypInfoDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CGetEncrypInfoApp
  10. BEGIN_MESSAGE_MAP(CGetEncrypInfoApp, CWinAppEx)
  11. ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
  12. END_MESSAGE_MAP()
  13. // CGetEncrypInfoApp 构造
  14. CGetEncrypInfoApp::CGetEncrypInfoApp()
  15. {
  16. // TODO: 在此处添加构造代码,
  17. // 将所有重要的初始化放置在 InitInstance 中
  18. }
  19. // 唯一的一个 CGetEncrypInfoApp 对象
  20. CGetEncrypInfoApp theApp;
  21. // CGetEncrypInfoApp 初始化
  22. void RefreshVersion(Encryptlockkernel::YtInfoVer1 &tagYtInfo, CHAR *szkeypath)
  23. {
  24. // 返回的软件版本号;
  25. INT nSoftVer = -1;
  26. // 返回的加密锁域名值字符串;
  27. CHAR szBranchId[MAX_PATH] = {0};
  28. typedef struct __STVERSION__
  29. {
  30. int nVersion;
  31. CString strVersion;
  32. }STVersion, *pSTVersion;
  33. STVersion tag_stVersion[6] =
  34. {
  35. { 0, _T("儿童全能版") },
  36. { 1, _T("儿童座席版") },
  37. { 2, _T("儿童企业版") },
  38. { 3, _T("婚纱全能版") },
  39. { 4, _T("婚纱座席版") },
  40. { 5, _T("婚纱企业版") }
  41. };
  42. INT nUSBPort = -1;
  43. if (!Encryptlockkernel::ReadYtInfoVer1(0, tagYtInfo, nUSBPort, szkeypath, MAX_PATH) )
  44. AfxMessageBox(_T("获取加密锁版本信息失败"));
  45. }
  46. BOOL CGetEncrypInfoApp::InitInstance()
  47. {
  48. // 如果一个运行在 Windows XP 上的应用程序清单指定要
  49. // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
  50. //则需要 InitCommonControlsEx()。否则,将无法创建窗口。
  51. INITCOMMONCONTROLSEX InitCtrls;
  52. InitCtrls.dwSize = sizeof(InitCtrls);
  53. // 将它设置为包括所有要在应用程序中使用的
  54. // 公共控件类。
  55. InitCtrls.dwICC = ICC_WIN95_CLASSES;
  56. InitCommonControlsEx(&InitCtrls);
  57. CWinAppEx::InitInstance();
  58. AfxEnableControlContainer();
  59. //////////////////////////////////////////////////////////////////////////
  60. #if 0 // 修复加密狗版本号;
  61. Encryptlockkernel::YtInfoVer1 tagYtInfo;
  62. CHAR szkeypath[MAX_PATH] = {0};
  63. Encryptlockkernel::ReSetPassWord();
  64. RefreshVersion(tagYtInfo, szkeypath);
  65. if ( Encryptlockkernel::ChangeVersion(szkeypath, tagYtInfo.nSoftVer, tagYtInfo.nSoftVer) )
  66. {
  67. tagYtInfo.nSoftVer = tagYtInfo.nSoftVer;
  68. AfxMessageBox(_T("成功修复加密锁版本!"));
  69. RefreshVersion(tagYtInfo, szkeypath);
  70. }
  71. else
  72. {
  73. AfxMessageBox(_T("修复加密锁版本失败!"));
  74. }
  75. return FALSE;
  76. #endif
  77. #if 0// 注册医院跟踪系统;
  78. Encryptlockkernel::YtInfoVer1 tagYtInfo;
  79. CHAR szkeypath[MAX_PATH] = {0};
  80. Encryptlockkernel::ReSetPassWord();
  81. if ( tagYtInfo.dwShortKey == 587482)
  82. {
  83. if ( Encryptlockkernel::ChangeHospital(szkeypath, TRUE) )
  84. {
  85. AfxMessageBox(_T("注册医院系统成功!"));
  86. }
  87. }
  88. else
  89. {
  90. CString str;
  91. str.Format(_T("加密锁id不对 %d"), tagYtInfo.dwShortKey);
  92. AfxMessageBox(str);
  93. }
  94. return FALSE;
  95. #endif
  96. #if 0
  97. // 获取加密锁ID值;
  98. DWORD dwShortKey = 0;
  99. INT nVersion = 0;
  100. CHAR szkeypath[MAX_PATH] = {0};
  101. BOOL bFind = Encryptlockkernel::FindYtUSB(dwShortKey, nVersion, szkeypath );
  102. if ( bFind )
  103. {
  104. CString strKey;
  105. strKey.Format(_T("ID值:%d"),dwShortKey);
  106. AfxMessageBox(strKey);
  107. }
  108. return TRUE;
  109. #endif
  110. //////////////////////////////////////////////////////////////////////////
  111. // 标准初始化
  112. // 如果未使用这些功能并希望减小
  113. // 最终可执行文件的大小,则应移除下列
  114. // 不需要的特定初始化例程
  115. // 更改用于存储设置的注册表项
  116. // TODO: 应适当修改该字符串,
  117. // 例如修改为公司或组织名
  118. SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
  119. CGetEncrypInfoDlg dlg;
  120. m_pMainWnd = &dlg;
  121. INT_PTR nResponse = dlg.DoModal();
  122. if (nResponse == IDOK)
  123. {
  124. // TODO: 在此放置处理何时用
  125. // “确定”来关闭对话框的代码
  126. }
  127. else if (nResponse == IDCANCEL)
  128. {
  129. // TODO: 在此放置处理何时用
  130. // “取消”来关闭对话框的代码
  131. }
  132. // 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
  133. // 而不是启动应用程序的消息泵。
  134. return FALSE;
  135. }