I need my app to be notified of any file Explorer events like open, close, navigate, focus, click etc.
I exploring IShellWindows
interface for this. I get how to use APIs like _NewEnum
, get_Count
etc. However, how to use OnCreated
, OnActivated
, OnNavigate
APIs are quite unclear. It seems these are callbacks which should be invoked when the corresponding events occur. But there is no documentation around how to set-up the callbacks. Am I missing something?