VarEqv (OLEAUT32.172)
HRESULT VarEqv ( LPVARIANT pVarLeft, LPVARIANT pVarRight, LPVARIANT pVarOut )
Determine if two variants contain the same value.
pVarLeft | [In] | First variant to compare. |
pVarRight | [In] | Variant to compare to pVarLeft. |
pVarOut | [Out] | Destination for comparison result. |
Success: S_OK. pVarOut contains the result of the comparison (VARIANT_TRUE if equivalent or non-zero otherwise.
Failure: An HRESULT error code indicating the error.
- This function simply calls VarXor on pVarLeft and pVarRight and inverts the result.
Declared in "include/oleauto.h". gitlab.winehq.org/wine/wine/blob/master/include/oleauto.h
Implemented in "dlls/oleaut32/variant.c". gitlab.winehq.org/wine/wine/blob/master/dlls/oleaut32/variant.c
Debug channel "variant".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.