Errore del compilatore C3110
'function_name': non è possibile eseguire l'overload di un metodo di interfaccia COM
Interfaccia preceduta da un attributo di interfaccia, ad esempio:
non può essere sottoposto a overload. Ad esempio:
// C3110.cpp
#include <unknwn.h>
[ object, uuid= "4F98A180-EF37-11D1-978D-0000F805D73B" ]
__interface ITestInterface
{
HRESULT mf1(void);
HRESULT mf1(BSTR); // C3110
};
int main()
{
}