摘要: 标准驱动程序This section describes the required and optional routines that you must implement in your driver to respond to calls from Windows or other drivers. 本节介绍当驱动被Windows或其它驱动程序调用时,为了做出适当的回应,你的驱动必须实现的必需和可选的例程。When these routines are called, your code must respond to the call and return the appropriat 阅读全文
posted @ 2013-05-29 21:14 bqrm_521(小奎) 阅读(240) 评论(0) 推荐(0) 编辑
摘要: DriverEntry is the first routine called after a driver is loaded, and is responsible for initializing the driver.DriverEntry是驱动加载后第一个执行的例程,它负责初始化驱动程序。语法:DRIVER_INITIALIZE DriverEntry;NTSTATUS DriverEntry( _In_ struct _DRIVER_OBJECT *DriverObject, _In_ PUNICODE_STRING RegistryPath){ ... }参数: Driv... 阅读全文
posted @ 2013-05-29 17:40 bqrm_521(小奎) 阅读(775) 评论(0) 推荐(0) 编辑