Hi Everyone,
I'm writing a Dll which stores a list of pointers to COM objects which I create. I then use this vector to locate a desired object which I may need to work on later. I define the vector as follows:
std::vector <LPDISPATCH> m_pObject;
Have a defined the above correctly? Should I be using LPDISPATCH? Please help me.
Thanks
John
I'm writing a Dll which stores a list of pointers to COM objects which I create. I then use this vector to locate a desired object which I may need to work on later. I define the vector as follows:
std::vector <LPDISPATCH> m_pObject;
Have a defined the above correctly? Should I be using LPDISPATCH? Please help me.
Thanks
John