Standard Driver Routines(标准驱动程序)
標準驅動程序
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 appropriate data in a timely manner.
當這些例程被調用時,你的驅動必須及時的做出響應,并返回恰當的數據。
The following routines are required for all drivers:
以下例程是所有驅動都必須實現的:
DriverEntry
AddDevice
DispatchXxx (routines beginning with "Dispatch" such as DispatchCreate)
Unload
The other routines in this section are optional,
but you may need to implement them depending on your driver type and the location of your driver in the device stack.
本節列出的其它例程都是根據你所寫驅動的類型以及驅動在設備棧中的位置,你可能要實現的例程。
轉載于:https://www.cnblogs.com/bqrm/archive/2013/05/29/3107026.html
總結
以上是生活随笔為你收集整理的Standard Driver Routines(标准驱动程序)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Oracle 以某字段分组,以某字段排序
- 下一篇: C#集合通论