阅读:1377回复:2
怎样实现一个自己的中断处理函数(windows环境下)?
查看网上资料 - 从IRQ到IRQL(APIC版) 里说到HalBeginSystemInterrupt、HalEndSystemInterrupt函数,是不是要实现一个自己的中断处理函数就必须这样?
void MyInterruptHandler() { ....... HalBeginSystemInterrupt(...); ....... HalEndSystemInterrupt(...); ....... } 但是HalBeginSystemInterrupt、HalEndSystemInterrupt这两个函数怎么调用啊?DDK和DriverWork都认不到这两个函数 |
|
沙发#
发布于:2007-04-11 21:26
自己定义,并且引入hal.lib~
|
|
|
板凳#
发布于:2007-04-12 11:00
![]() |
|