user420667
user420667

Reputation: 6700

how can I intercept and modify program read/writes?

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.

Upvotes: 0

Views: 106

Answers (1)

Eugene
Eugene

Reputation: 3417

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.

Upvotes: 1

Related Questions