I have an application that has to talk to another app that is a COM Automation server. The COM server app provides a TLB file which I am able to extract into a .cpp and .h file using the Import Type Library option. Using these I can access the servers exposed objects.
However there are Dispatch interfaces that the server provides that my app must implement to handle events thrown by the server.
I'm totally lost on where to begin with this. Does anyone know how I can implement these interfaces (define the functions, etc?) so that events on the server-side will be handled by my app?