|
- KIRQL WPOFFx64()
- {
- KIRQL irql=KeRaiseIrqlToDpcLevel();
- UINT64 cr0=__readcr0();
- cr0 &= 0xfffffffffffeffff;
- __writecr0(cr0);
- _disable();
- return irql;
- }
- void WPONx64(KIRQL irql)
- {
- UINT64 cr0=__readcr0();
- cr0 |= 0x10000;
- _enable();
- __writecr0(cr0);
- KeLowerIrql(irql);
- }
复制代码
我想请问大牛 其中_disable(); _enable(); 这两个函数的作用是什么,我用F12跟不进去,求指点! |
|