码迷,mamicode.com
首页 >  
搜索关键字:just a hook    ( 3745个结果
我的Hook学习笔记
关于Hook一、基本概念: 钩子(Hook),是Windows消息处理机制的一个平台,应用程序能够在上面设置子程以监视指定窗体的某种消息,并且所监视的窗体能够是其它进程所创建的。当消息到达后,在目标窗体处理函数之前处理它。钩子机制同意应用程序截获处理window消息或特定事件。 钩子实际上是一个处....
分类:其他好文   时间:2014-06-19 09:05:16    阅读次数:213
Objective-C的hook方案(一): Method Swizzling
原文地址:http://blog.csdn.net/yiyaaixuexi/article/details/9374411Objective-C的hook方案(一): Method Swizzling在没有一个类的实现源码的情况下,想改变其中一个方法的实现,除了继承它重写、和借助类别重名方法暴力抢先...
分类:其他好文   时间:2014-06-18 15:01:49    阅读次数:213
LeetCode: Valid Parentheses 题解
Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct ...
分类:其他好文   时间:2014-06-18 12:56:59    阅读次数:155
Longest Valid Parentheses
题目 Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. For "(()", the longest valid parentheses substring...
分类:其他好文   时间:2014-06-16 22:41:41    阅读次数:267
HDU 1698 Just a Hook 线段树解法
很经典的题目,而且是标准的线段树增加lazy标志的入门题目。 做了好久线段树,果然是practice makes perfect, 这次很畅快,打完一次性AC了。 标志的线段树函数。 主要是: 更新的时候只更新到需要的节点,然后最后的时候一次性把所以节点都更新完毕。 这也是线段树常用的技术。 #include const int SIZE = 100005; struct Node...
分类:其他好文   时间:2014-06-16 20:38:39    阅读次数:182
poj 2503:Babelfish(字典树,经典题,字典翻译)
BabelfishTime Limit:3000MSMemory Limit:65536KTotal Submissions:30816Accepted:13283DescriptionYou have just moved from Waterloo to a big city. The peop...
分类:其他好文   时间:2014-06-15 11:07:12    阅读次数:237
Process Hacker源码中的用户态hook的做法
processhacker-code-5632\1.x\trunk\NProcessHacker\hook.htypedef struct _PH_HOOK{ PVOID Function; PVOID Target; BOOLEAN Hooked; CHAR Bytes[5...
分类:其他好文   时间:2014-06-12 18:11:47    阅读次数:216
openoffice osl模块学习1
由“ can i get a char* , please?"看起:Just barely. OO.o has at least six string wrappers, although the C implementations are of little interest:rtl_String...
分类:其他好文   时间:2014-06-12 12:27:15    阅读次数:296
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!