lyfzRepair.cpp 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. // lyfzRepair.cpp : 定义应用程序的类行为。
  2. //
  3. #include "stdafx.h"
  4. #include "lyfzRepair.h"
  5. #include "lyfzRepairDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. static ULONG_PTR g_lGdiPlusToken = 0L;
  10. // 申明钩子
  11. DETOUR_TRAMPOLINE(int WINAPI SetScrollInfoT(HWND, int, LPCSCROLLINFO, BOOL), SetScrollInfo)
  12. DETOUR_TRAMPOLINE(BOOL WINAPI GetScrollInfoT(HWND, int, LPSCROLLINFO), GetScrollInfo)
  13. DETOUR_TRAMPOLINE(int WINAPI SetScrollPosT(HWND, int, int, BOOL), SetScrollPos)
  14. DETOUR_TRAMPOLINE(int WINAPI GetScrollPosT(HWND, int), GetScrollPos)
  15. DETOUR_TRAMPOLINE(BOOL WINAPI GetScrollRangeT(HWND, int, LPINT, LPINT), GetScrollRange)
  16. DETOUR_TRAMPOLINE(BOOL WINAPI SetScrollRangeT(HWND, int, int, int, BOOL), SetScrollRange)
  17. DETOUR_TRAMPOLINE(BOOL WINAPI ShowScrollBarT(HWND, int, BOOL), ShowScrollBar)
  18. DETOUR_TRAMPOLINE(BOOL WINAPI EnableScrollBarT(HWND, UINT, UINT), EnableScrollBar)
  19. int WINAPI SetScrollInfoD(HWND hwnd, int fnBar, LPCSCROLLINFO lpsi, BOOL bRedraw)
  20. {
  21. if( SkinSB_IsValid(hwnd) )
  22. return SkinSB_SetScrollInfo(hwnd, fnBar, lpsi, bRedraw);
  23. else
  24. return SetScrollInfoT(hwnd, fnBar, lpsi, bRedraw);
  25. }
  26. BOOL WINAPI GetScrollInfoD(HWND hwnd, int fnBar, LPSCROLLINFO lpsi)
  27. {
  28. if( SkinSB_IsValid(hwnd) )
  29. return SkinSB_GetScrollInfo(hwnd, fnBar, lpsi);
  30. else
  31. return GetScrollInfoT(hwnd, fnBar, lpsi);
  32. }
  33. int WINAPI SetScrollPosD(HWND hwnd, int nBar, int nPos, BOOL bRedraw)
  34. {
  35. if( SkinSB_IsValid(hwnd) )
  36. return SkinSB_SetScrollPos(hwnd, nBar, nPos, bRedraw);
  37. else
  38. return SetScrollPosT(hwnd, nBar, nPos, bRedraw);
  39. }
  40. int WINAPI GetScrollPosD(HWND hwnd, int nBar)
  41. {
  42. if( SkinSB_IsValid(hwnd) )
  43. return SkinSB_GetScrollPos(hwnd, nBar);
  44. else
  45. return GetScrollPosT(hwnd, nBar);
  46. }
  47. BOOL WINAPI SetScrollRangeD(HWND hwnd, int nBar, int nMinPos, int nMaxPos, BOOL bRedraw)
  48. {
  49. if( SkinSB_IsValid(hwnd) )
  50. return SkinSB_SetScrollRange(hwnd, nBar, nMinPos, nMaxPos, bRedraw);
  51. else
  52. return SetScrollRangeT(hwnd, nBar, nMinPos, nMaxPos, bRedraw);
  53. }
  54. BOOL WINAPI GetScrollRangeD(HWND hwnd, int nBar, LPINT lpMinPos, LPINT lpMaxPos)
  55. {
  56. if( SkinSB_IsValid(hwnd) )
  57. return SkinSB_GetScrollRange(hwnd, nBar, lpMinPos, lpMaxPos);
  58. else
  59. return GetScrollRangeT(hwnd, nBar, lpMinPos, lpMaxPos);
  60. }
  61. BOOL WINAPI ShowScrollBarD(HWND hwnd, int nBar, BOOL bShow)
  62. {
  63. if( SkinSB_IsValid(hwnd) )
  64. return SkinSB_ShowScrollBar(hwnd, nBar, bShow);
  65. else
  66. return ShowScrollBarT(hwnd, nBar, bShow);
  67. }
  68. BOOL WINAPI EnableScrollBarD(HWND hwnd, UINT wSBflags, UINT wArrows)
  69. {
  70. if( SkinSB_IsValid(hwnd) )
  71. return SkinSB_EnableScrollBar(hwnd, wSBflags, wArrows);
  72. else
  73. return EnableScrollBarT(hwnd, wSBflags, wArrows);
  74. }
  75. // ClyfzRepairApp
  76. BEGIN_MESSAGE_MAP(ClyfzRepairApp, CWinAppEx)
  77. ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
  78. END_MESSAGE_MAP()
  79. // ClyfzRepairApp 构造
  80. ClyfzRepairApp::ClyfzRepairApp()
  81. {
  82. // TODO: 在此处添加构造代码,
  83. // 将所有重要的初始化放置在 InitInstance 中
  84. }
  85. // 唯一的一个 ClyfzRepairApp 对象
  86. ClyfzRepairApp theApp;
  87. // ClyfzRepairApp 初始化
  88. BOOL ClyfzRepairApp::InitInstance()
  89. {
  90. // 如果一个运行在 Windows XP 上的应用程序清单指定要
  91. // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
  92. //则需要 InitCommonControlsEx()。否则,将无法创建窗口。
  93. INITCOMMONCONTROLSEX InitCtrls;
  94. InitCtrls.dwSize = sizeof(InitCtrls);
  95. // 将它设置为包括所有要在应用程序中使用的
  96. // 公共控件类。
  97. InitCtrls.dwICC = ICC_WIN95_CLASSES;
  98. InitCommonControlsEx(&InitCtrls);
  99. CWinAppEx::InitInstance();
  100. AfxEnableControlContainer();
  101. GetModelPath();
  102. // 获取配置文件;
  103. GetServerInfo();
  104. // gdi初始化;
  105. GdiplusStartupInput StartupInput;
  106. GdiplusStartup(&g_lGdiPlusToken,&StartupInput,NULL);
  107. // 加载钩子
  108. DetourFunctionWithTrampoline((PBYTE)SetScrollInfoT, (PBYTE)SetScrollInfoD);
  109. DetourFunctionWithTrampoline((PBYTE)GetScrollInfoT, (PBYTE)GetScrollInfoD);
  110. DetourFunctionWithTrampoline((PBYTE)SetScrollPosT, (PBYTE)SetScrollPosD);
  111. DetourFunctionWithTrampoline((PBYTE)GetScrollPosT, (PBYTE)GetScrollPosD);
  112. DetourFunctionWithTrampoline((PBYTE)SetScrollRangeT, (PBYTE)SetScrollRangeD);
  113. DetourFunctionWithTrampoline((PBYTE)GetScrollRangeT, (PBYTE)GetScrollRangeD);
  114. DetourFunctionWithTrampoline((PBYTE)ShowScrollBarT, (PBYTE)ShowScrollBarD);
  115. DetourFunctionWithTrampoline((PBYTE)EnableScrollBarT, (PBYTE)EnableScrollBarD);
  116. // 标准初始化
  117. // 如果未使用这些功能并希望减小
  118. // 最终可执行文件的大小,则应移除下列
  119. // 不需要的特定初始化例程
  120. // 更改用于存储设置的注册表项
  121. // TODO: 应适当修改该字符串,
  122. // 例如修改为公司或组织名
  123. SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
  124. ClyfzRepairDlg dlg;
  125. m_pMainWnd = &dlg;
  126. INT_PTR nResponse = dlg.DoModal();
  127. if (nResponse == IDOK)
  128. {
  129. // TODO: 在此放置处理何时用
  130. // “确定”来关闭对话框的代码
  131. }
  132. else if (nResponse == IDCANCEL)
  133. {
  134. // TODO: 在此放置处理何时用
  135. // “取消”来关闭对话框的代码
  136. }
  137. // 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
  138. // 而不是启动应用程序的消息泵。
  139. return FALSE;
  140. }
  141. int ClyfzRepairApp::ExitInstance()
  142. {
  143. // TODO: 在此添加专用代码和/或调用基类
  144. // 卸载钩子
  145. DetourRemove((PBYTE)SetScrollInfoT, (PBYTE)SetScrollInfoD);
  146. DetourRemove((PBYTE)SetScrollPosT, (PBYTE)SetScrollPosD);
  147. DetourRemove((PBYTE)GetScrollInfoT, (PBYTE)GetScrollInfoD);
  148. DetourRemove((PBYTE)GetScrollPosT, (PBYTE)GetScrollPosD);
  149. DetourRemove((PBYTE)SetScrollRangeT, (PBYTE)SetScrollRangeD);
  150. DetourRemove((PBYTE)GetScrollRangeT, (PBYTE)GetScrollRangeD);
  151. DetourRemove((PBYTE)ShowScrollBarT, (PBYTE)ShowScrollBarD);
  152. DetourRemove((PBYTE)EnableScrollBarT, (PBYTE)EnableScrollBarD);
  153. GdiplusShutdown(g_lGdiPlusToken);
  154. return CWinAppEx::ExitInstance();
  155. }