Don't ignore DISPATCH_METHOD in ITypeInfo::Invoke.
This commit is contained in:
parent
5a538105d1
commit
e35f4ee144
|
@ -3918,7 +3918,7 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
|
||||||
|
|
||||||
for(pFDesc=This->funclist; pFDesc; pFDesc=pFDesc->next)
|
for(pFDesc=This->funclist; pFDesc; pFDesc=pFDesc->next)
|
||||||
if (pFDesc->funcdesc.memid == memid) {
|
if (pFDesc->funcdesc.memid == memid) {
|
||||||
if (pFDesc->funcdesc.invkind & (dwFlags & ~DISPATCH_METHOD))
|
if (pFDesc->funcdesc.invkind & dwFlags)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (pFDesc) {
|
if (pFDesc) {
|
||||||
|
|
Loading…
Reference in New Issue