Welcome![Sign In][Sign Up]
Location:
Search - hook windows message

Search list

[Windows DevelopHookMessagebox

Description: 这是一个Hook windowsAPI 的例子。 本DLL是HOOK windows的messagobox函数 并将应用程序中调用messagebox函数弹出的对话框的样式修改了一下!修改后的对话框效果见源代码里的效果图!在release目录里自带一个将dll注入进程的程序!-Hook windowsAPI example. The DLL is the messagobox HOOK windows function will be called from applications messageBox Function pop-up dialog box changes the format a bit! After the revised results dialog see the source code's effectiveness map! The release directory will own a dll injection process procedures!
Platform: | Size: 224256 | Author: 王凯兵 | Hits:

[Hook apiudisk2

Description: 1、截获WINDOWS的系统消息,就是大家说的HOOK 2、监视系统事件 3、监视系统磁盘变化 2、3两种实现的代码昨天刚写了一块,楼主想必看过了,里面两种方法都提到了, 其实只用第3种就好,监视磁盘的同时很容易得到磁盘盘符和类型,得到盘符和路径以后,其他的楼主又没问-an intercepted Windows system message, as we say HOOK 2, 3 incident surveillance systems, surveillance systems disk 2,3 two changes to the code to achieve yesterday was a, Island, must have seen, there are two methods mentioned, in fact, only the first three go, Disk surveillance at the same time very easy and disk drive types, have drive and path, the landlord does not have any other question.
Platform: | Size: 4096 | Author: | Hits:

[Hook apiHook

Description: 钩子(hook)是Windows消息处理机制的一部分,用户应用程序设置钩子后就可截获所有Windows系统消息。钩子安装成功后就可通过钩子的过程处理函数处理所截获的消息。通常将钩子的安装及处理函数放在动态链接库中,供系统中每个进程调用。钩子安装后会对系统产生一定的影响。因此在使用完钩子后应及时将其释放掉。 动态链接库编程编译、链接生成的*.dll和*.lib文件可供其他调用DLL的应用程序使用。 -Hook (hook) is a Windows message processing part of the mechanism, the user application settings can be intercepted after the hook all Windows system message. After the success of hook can be installed through the process of hook handler to deal with the intercepted message. Usually hook the installation and handling functions on the dynamic link library for the system call for each process. Hook after the installation of the system have a certain impact. Therefore, after you are finished using the hook should be released promptly lost. Dynamic Link Library programming compiler, link-generated*. dll and*. lib files for other applications that call the DLL to use.
Platform: | Size: 796672 | Author: 程娃 | Hits:

[Hook apiMessageHook

Description: Windows消息钩子,拦截指定程序的任何消息,值得下载保存.-Windows message hook to intercept any information specified procedures, it is worth downloading preservation.
Platform: | Size: 185344 | Author: 田博 | Hits:

[VC/MFCHook

Description: Windows消息在系统及应用程序的运行中起着关键的作用,每一次键盘、鼠标的点击 都会有消息的传递,应用程序通过对消息的响应来实现与用户的交互。钩子(Hook)函数作为Win— dows编程中的一种强有力的工具,可以有效地截获Windows系统内部传递的消息,在消息到达目标窗 1:7的处理函数之前先对消息做出相应处理,从而实现对应用程序的监视与控制。文中描述了Windows 消息的构成,介绍了Hook函数的安装、释放及类型,最后介绍了一个Hook函数实现应用程序操作的 捕捉的实例。-Windows messages in the system and applications running in a critical role to play, every keyboard, mouse clicks, there will be transmission of messages, the application of information in response to realize the interaction with the user. Hook (Hook) function as a Win-dows of a powerful programming tool that can effectively pass intercepted Windows system information in the message window to reach the goal of treatment 1:7 function before treatment of the news and make the corresponding in order to realize the application of surveillance and control. The article describes the Windows message composition, introduction of the Hook function to install, release and type, and finally introduce a function realize Hook applications to capture examples of the operation.
Platform: | Size: 183296 | Author: jiny | Hits:

[Windows DevelopInput_Method

Description: 目前常用的输入法基本上有两种类型:外挂式(如早期的万能五笔)及输入法接口式(Input Method Editor-IME)。外挂式比较简单,就是一个exe文件,通过模拟一些Windows输入消息来给当前处于活动状态的编辑窗口输入文字,一个显著的优点是输入法只要启动一次,就可以在所有进程中使用;但缺点不不容忽视,首先实现起来也不容易,一个更大的不足是兼容性不够好,通常一个Windows版本需要一人对应的输入法版本,此外这类输入法为了能够截获用户输入,通常需要挂接键盘钩子,容易造成系统不稳定或者效率不高。-Currently commonly used input method basically has two types: external (such as universal early five-stroke) and the input method interface type (Input Method Editor-IME). Relatively simple plug-in type is a exe file, by simulating a number of Windows input message to the current active editor window to enter text, a significant advantage is the input method as long as the start time, you can use in all processes but do not disadvantage can not be ignored, first of all, it was not easy to achieve, a greater lack of compatibility are not good enough, usually a Windows version required one person version of the corresponding input method, in addition to this type of input method in order to be able to intercept user input, usually articulated necessary keyboard hook , easily lead to system instability or inefficient.
Platform: | Size: 18432 | Author: 高军 | Hits:

[OS programHook

Description: 钩子是WINDOWS中消息处理机制的一个要点,通过安装各种钩子,应用程序能够设置相应的子例程来监视系统里的消息传递以及在这些消息到达目标窗口程序之前处理它们。钩子的种类很多,每种钩子可以截获并处理相应的消息,如键盘钩子可以截获键盘消息,鼠标钩子可以截获鼠标消息,外壳钩子可以截获启动和关闭应用程序的消息,日志钩子可以监视和记录输入事件。钩子分为线程专用钩子和全局钩子,线程专用钩子只监视指定的线程,要监视系统中的所有线程,必须用到全局钩子。对于全局钩子,钩子函数必须包含在独立的动态链接库(DLL)中,这样才能被各种相关联的应用程序调用。在WINDOWS中,日志钩子是个很特别的钩子,它只有全局钩子一种,是键盘鼠标等输入设备的消息在系统消息队列被取出时发生的,而且系统中只能存在一个这样的日志钩子,更重要是,它不必用在动态链接库中,这样可以省却了为安装一个全局钩子而建立一个动态链接库的麻烦。利用日志钩子,我们可以监视各种输入事件,下面的示例可以用来记录键盘的输入,当有按键发生时,自动记录按键动作的日期和时间以及当前激活的窗口名称。 根据网上教程编写并调试通过.-WINDOWS hook are message handling mechanism in a point, by installing a variety of hooks, the application can set the appropriate subroutine to monitor the messaging system, as well as the message arrive at these objectives deal with them before the window. A lot of the type of hook, each hook can be intercepted and processed the corresponding message, such as a keyboard hook keyboard can be intercepted message, the mouse can be intercepted mouse message hook, hook shell can be intercepted by the application to start and turn off the message, log hook can monitor and record input case. Hook into thread-specific hook and global hook, thread-specific hook to monitor only the specified thread, it is necessary to monitor the system all the threads must be used in the overall hook. The overall hook, hook function must be included in a separate dynamic-link library (DLL), this can be a variety of applications associated call. In WINDOWS, the log is a very special hook the hook, it is only a
Platform: | Size: 206848 | Author: changyou | Hits:

[Hook apiHookMouse

Description: 一个简单的鼠标钩子程序 Windows系统是建立在事件驱动的机制上的,说穿了就是整个系统都是通过消息的传递来实现的。而钩子是Windows系统中非常重要的系统接口,用它可以截获并处理送给其他应用程序的消息,来完成普通应用程序难以实现的功能。钩子的种类很多,每种钩子可以截获并处理相应的消息,如键盘钩子可以截获键盘消息,外壳钩子可以截取、启动和关闭应用程序的消息等。本文在VC6编程环境下实现了一个简单的鼠标钩子程序,并对Win32全局钩子的运行机制、Win32 DLL的特点、VC6环境下的MFC DLL以及共享数据等相关知识进行了简单的阐述。-A simple mouse hook procedure Windows system is based on event-driven mechanism, and put it bluntly, is that the whole system through message passing to achieve. The hook is a very important Windows system, the system interface, you can use to intercept and handle messages sent to other applications to complete the application difficult to achieve normal function. Many different types of hooks, each hook can intercept and process the corresponding message, such as a keyboard hook to intercept keyboard messages, shell hooks can be intercepted, start and close applications news. In this paper, VC6 programming environment to achieve a simple mouse hook procedure, and the global hook Win32 operating mechanism, Win32 DLL characteristics, VC6 environment MFC DLL, as well as sharing of data and other related knowledge of the brief explanation.
Platform: | Size: 47104 | Author: 冰雨 | Hits:

[Hook apiHOOKstudy

Description: hook 手册 Windows系统是以消息处理为其控制机制,系统通过消息为窗口过程(windows procedure)传递输入。系统和应用两者都可以产生消息。对于每个输入事件,例如用户按下了键盘上的某个键、移动了鼠标、单击了一个控件上的滚动条,等等,系统都将产生一系列消息-hook Manual Windows message handling system is based on its control mechanism, system, through the message to the window procedure (windows procedure) to pass input. Both systems and applications can generate the message. For each input event, such as the user presses a key on the keyboard, move the mouse, click a control on the scroll bar, and so on, the system will produce a series of messages
Platform: | Size: 265216 | Author: txyms | Hits:

[Hook apihooktest

Description: window hook, you can get message in the whole windows
Platform: | Size: 2324480 | Author: sky | Hits:

[Driver DevelopDelphiHook

Description: Hook Windows All message
Platform: | Size: 908288 | Author: trt | Hits:

[Hook apianit

Description: Windows应用程序是基于消息驱动的,任何线程只要注册窗口类都会有一个消息队列用于接收用户输入的消息和系统消息。为了拦截消息,Windows提出了钩子的概念。钩子(Hook)是Windows消息处理机制中的一个监视点,钩子提供一个回调函数。当在某个程序中安装钩子后,它将监视该程序的消息,在指定消息还没到达窗口之前钩子程序先捕获这个消息。这样就有机会对此消息进行过滤,或者对Windows消息实现监控。-Windows application is based on the message-driven, any thread as long as the registered window class will have a message queue for receiving user input and system messages. In order to intercept the message, Windows made ​ ​ a hook concept. Hook (Hook) is a Windows message handling mechanism in a watch point, hook a callback function. When a program is installed in the hook, it will monitor the program s message, the message has not reached the specified window procedure first before capturing the news hook. This will have the opportunity to filter this information, or to achieve control of Windows messages.
Platform: | Size: 7168 | Author: 田浩 | Hits:

[GUI DevelopLesson20Code

Description: 本程序为HOOK和数据库访问。包含了windows消息机制,动态链接库被多个进程访问,数据库访问技术,ODBC体系架构等内容。-The program the HOOK and database access. Contains the Windows message mechanism, dynamic link library by multiple processes to access the contents of the database access technology, ODBC architecture.
Platform: | Size: 236544 | Author: 王兴 | Hits:

[GUI DevelopHOOK

Description: 此程序包括windows消息机制,动态链接库被多个进程访问,数据库访问技术等应用。完成了HOOK和数据库访问的功能。-This program includes the Windows message mechanism, dynamic link library access by multiple processes, database access technology. HOOK and database access function.
Platform: | Size: 235520 | Author: 王兴 | Hits:

[VC/MFChook

Description: 钩子(Hook),是Windows消息处理机制的一个平台,应用程序可以在上面设置子程以监视指定窗口的某种消息,而且所监视的窗口可以是其他进程所创建的。当消息到达后,在目标窗口处理函数之前处理它。钩子机制允许应用程序截获处理window消息或特定事件。-Hook (Hook), Windows message handling mechanism is a platform, the application can set the child in the above process to monitor a specified window message, and are monitoring window can be created by other processes. When a message arrives in the target window procedure to deal with it before. Hook mechanism allows applications to intercept processing window messages or specific events.
Platform: | Size: 12288 | Author: JAYRONWANG | Hits:

[GDI-BitmapWintab_Example

Description: 使用wintab开发的例子,VB开发环境,经过验证可以-Wintab32.dll Demo in VB6 ReadMe notes ******************************************************* ******************************************************* A few notes on this before you play with it: 1) You cannot debug through much of the code! The reason for this is that the routine performs a Windows message hook for the window messages that normally go to the window. So when the user moves the mouse over a window, Windows generates all the messages and sends them to the window to respond. (examples are "MouseEnterWindow, MouseMove, MouseLeaveWindow"). Note these are different from the VB events which are similarly named but operate within VB, they are instead the actual messages Windows OS uses to respond. This is how windows does all of its GUI. Since a hook has been placed in the code, those messages go to the callback routine and thus get intercepted in the application. In debug, all code execution halts in the VB app. But windows keeps sending the messages to the cal
Platform: | Size: 16384 | Author: 马小华 | Hits:

[OS programdijihook

Description: windows系统下的编程,消息message的传递是贯穿其始终的。这个消息我们可以简单理解为一个有特定意义的整数,正如我们看过的老故事片中的“长江长江,我是黄河”一个含义。windows中定义的消息给初学者的印象似乎是“不计其数”的,常见的一部分消息在winuser.h头文件中定义。hook与消息有着非常密切的联系,它的中文含义是“钩子”,这样理解起来我们不难得出“hook是消息处理中的一个环节,用于监控消息在系统中的传递,并在这些消息到达最终的消息处理过程前,处 理某些特定的消息”。这也是hook分为不同种类的原因。-Windows system programming, to deliver the message message is through the beginning of. The news we can be simply understood as the meaning of a particular integer, as we have seen the old story in the "Yangtze River, I am the Yellow River" a meaning. Definition of the message in windows for beginners to the impression that it is "too many to count", a common part of the messages defined in the winuser.h header file. Hook and message has a very close contact, Chinese and its meaning is "hook", it is not difficult for us to understand that "hook is a link in the transfer of message processing, for monitoring message in the system, and arrive at the final message in the message processing process, processing certain news". This is also the reason for different types of hook.
Platform: | Size: 219136 | Author: 束继涛 | Hits:

[Hook apiCC--_HOOK_API_code

Description: 钩子(Hook),是Windows消息处理机制的一个平台,应用程序可以在上面设置子程以监视指定窗口的某种消息,而且所监视的窗口可以是其他进程所创建的。附代码。- Hook (Hook), is a platform Windows message handling mechanism, the application can be set to monitor sub-processes of a message in the above specified window, and the window can be monitored by other processes created. Attached code.
Platform: | Size: 4096 | Author: sky | Hits:

[Hook apiHookSrv

Description: 钩子(Hook),是Windows消息处理机制的一个平台,应用程序可以在上面设置子程以监视指定窗口的某种消息,而且所监视的窗口可以是其他进程所创建的。附代码。-Hook (Hook), is a platform Windows message handling mechanism, the application can be set to monitor sub-processes of a message in the above specified window, and the window can be monitored by other processes created. Attached code.
Platform: | Size: 19456 | Author: sky | Hits:

[Hook apihook

Description: 钩子(Hook),是Windows消息处理机制的一个平台,应用程序可以在上面设置子程以监视指定窗口的某种消息,而且所监视的窗口可以是其他进程所创建的。当消息到达后,在目标窗口处理函数之前处理它。钩子机制允许应用程序截获处理window消息或特定事件。该代码包含较为全面的示例。(Hook (Hook), Windows message processing mechanism is a platform, applications can be set on the procedure to monitor some messages of specified window, and the monitoring window can be created by other processes. When the message arrives, handle it before the target window handler. Hook mechanism allows applications to intercept window messages or specific events. This code contains a comprehensive sample.)
Platform: | Size: 462848 | Author: riqmany | Hits:
« 12 »

CodeBus www.codebus.net