Events from another application

  • Thread starter Thread starter B-Laskey
  • Start date Start date
B

B-Laskey

Hi,

Is there a way to interact with / intercept events happening from another
application (specifically WinInet functions like InternetReadFile and
InternetWriteFile). I want my application to react based on these events.

Thanks
 
Not those events, no. "Events" in the operating system sense can be
globally available. They have to be created as named events. If they are,
any other application trying to open the same event name gets a reference to
the same event. In your particular case, if you control the source for both
applications, you can do something with OS events to notify the secondary
application of the 'event' that you are seeing.

Tell us what you're trying to do, specifically, and maybe there's something
that we can help with.

Paul T.
 
Back
Top