interrupt handling in win2k
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
:confused:<Hello, How can i handle interrupts in win2k environment? Thanks in advance...
-
:confused:<Hello, How can i handle interrupts in win2k environment? Thanks in advance...
I'm pretty sure that you need to run in ring 0 which means you write a device driver or similar kernel-mode code. Brad
-
I'm pretty sure that you need to run in ring 0 which means you write a device driver or similar kernel-mode code. Brad
http://www.codeproject.com/useritems/interrupthook.asp[^] is for raw interrupt hooking, and to setup an interrupt handler, you'll need to use the kernel-mode api IoConnectInterrupt! Don't try it, just do it! ;-)