admin

Some concepts of Qt Thread are subtle enough to confuse most newbies. You may have read articles about “the right way” and “the wrong way” to use Qt thread, and […]

mhook is a good library to set up Windows API hook. However it is developed under VC. You can Download the source code of mhook   and uncompress the zip package, […]

One of the methods to run your code in another process(remote process)(so-called code injection) is using Windows Hook. The process is as follows: You write your code in a function […]

We know that a variable will be substituted with its value in a “” delimited string such as: $var1=”var1″; echo “this is $var1”; will print “this is var1”. This variable […]