In my code there is a function call to InvokeHelper. What I found on internet is that InvokeHelper is used to call a function by using dwDispID.
This is the call.
InvokeHelper(0xd, DISPATCH_METHOD, VT_DISPATCH, (void*)&pDispatch, parms, Name);
Now I want to debug inside. But I don't know which function will be called. 0xd is pointing to which function? There is odl file in project as well. Will this invoke some call from that odl? What function?
EDIT:
I found these lines on the top of cpp file.
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
// NOTE: Do not modify the contents of this file. If this class is regenerated by
// Microsoft Visual C++, your modifications will be overwritten.
So it looks like this class is wrapper. But wrapper of which class?