I have read the MSDN documentation and it says that the argument to the get_controls function is a pointer to an interface pointer. (my interface is IWMControls) I've declared my interface pointer as CComPtr<IWMControls> controls and I need to declare a pointer to it. how do I declare this pointer so that I can pass it as an argument to get_controls();

Thanks in advance.