...
When you link with the WinGate SDK your module will automatically be linked with all Qbik public interfaces as they are published by their respective components. You obviously cannot use these interfaces until they are published so the Notify mechanism is present to allow you to receive a message when a new interface is registered and able to be used. The sequence typically goes as follows:
- A dependent dependency component registers an Interface with RegisterInterface
- The framework calls the ComponentEntry.Notify callback for your component previously registered with RegisterComponent
- In the Notify callback, you act on notification of this interface
...