tags:

views:

30

answers:

1

Say firefox writes to it's own history file, and I'd like to modify what it does when it does it.

How can I do that?

Similarly, say a program sends audio to the speakers/headphones. How could I intercept that signal, process it, and send it back to where it was headed? Certainly the Master Volume does something like that.

Thanks.

+1  A: 

If you need to do some stuff with FF only, try to do with add-on API.

As for audio processing, I guess you need to use windows kernel mode.

Eugene
Could you explain more about this kernel mode?
http://en.wikipedia.org/wiki/Windows_Driver_Model
Eugene