摘要: 1、编写靶子程序 1 #include 2 #include 3 4 void main() { 5 int a = 10; 6 printf("%x\n",&a); 7 while (1) { 8 printf("%d\n",a); 9 a... 阅读全文
posted @ 2015-01-31 20:26 漂鸟 阅读(385) 评论(0) 推荐(0) 编辑
摘要: Symbolic constantHexadecimal valueMouse or keyboard equivalentVK_LBUTTON0x01Left mouse button.VK_RBUTTON0x02Right mouse button.VK_CANCEL0x03Control-br... 阅读全文
posted @ 2015-01-31 11:54 漂鸟 阅读(1708) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 /* 5 按下windows+E键,打开资源管理器 6 */ 7 void main() { 8 keybd_event(0x5b ,0, 0, 0);//按下windows键 9 10 keybd_ev... 阅读全文
posted @ 2015-01-31 11:52 漂鸟 阅读(1177) 评论(0) 推荐(0) 编辑