2009年10月29日
摘要: [代码]哈哈看到这里整个程序的具体实现方法、功能之间的联系、其中包含的知识、以及结合以前所学想象一下程序为什么能运行、心里已经有底了。通过这几天的学习收获很多,对发现Windows核心编程有了一个初步的自己的认识。Windows好像就是一个巨大的错综复杂的数据结构,Windows核心编程就是要用代码去改变这些结构然后相应的功能也就出来了 阅读全文
posted @ 2009-10-29 20:12 wParma 阅读(1111) 评论(0) 推荐(1) 编辑
摘要: [代码]PROCESSENTRY32 Describes an entry from a list that enumerates the processes residing in the system address space when a snapshot was taken. //在系统快照生成时,通过一个列举进程在内存中存储情况的列表描述一个入口点信息 typedef struct ... 阅读全文
posted @ 2009-10-29 18:46 wParma 阅读(1112) 评论(0) 推荐(1) 编辑
摘要: [代码]Toolhelp32ReadProcessMemory The Toolhelp32ReadProcessMemory function copies memory allocated to another process into an application-supplied buffer. //函数 Toolhelp32ReadProcessMemory 读取另外一个进程的内存带应... 阅读全文
posted @ 2009-10-29 17:23 wParma 阅读(1387) 评论(0) 推荐(1) 编辑
摘要: [代码]CB_ADDSTRING Message An application sends a CB_ADDSTRING message to add a string to the list box of a combo box. If the combo box does not have the CBS_SORT style, the string is added to the end o... 阅读全文
posted @ 2009-10-29 17:22 wParma 阅读(617) 评论(0) 推荐(1) 编辑
摘要: 相关MSDN资料整理 WM_COMMAND Notification The WM_COMMAND message is sent when the user selects a command item from a menu, when a control sends a notification message to its parent window, or when an acceler... 阅读全文
posted @ 2009-10-29 16:28 wParma 阅读(730) 评论(0) 推荐(1) 编辑