Hook.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:1k
- // Hook.cpp: implementation of the CHook class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "Hook.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CHook::CHook()
- {
-
- }
- CHook::~CHook()
- {
-
- }
- BOOL CHook::starthook(HWND hWnd)
- {
- //安装钩子并设定接收显示窗口句柄
- BOOL bResult=FALSE;
- glhHook=SetWindowsHookEx(WH_MOUSE,MouseProc,glhInstance,0);
- if(glhHook!=NULL)
- bResult=TRUE;
- //设置显示目标窗口标题编辑框的句柄
- glhDisplayWnd=hWnd;
- return bResult;
- }
- BOOL CHook::stophook()
- {
- //卸载钩子
- BOOL bResult=FALSE;
- if(glhHook)
- bResult= UnhookWindowsHookEx(glhHook);
- if(bResult)
- {
- glhPrevTarWnd=NULL;
- glhDisplayWnd=NULL;//清变量
- glhHook=NULL;
- }
- return bResult;
- }