RoIsApiContractPresent function winrt
Returns true or false to indicate whether the API contract with the specified name and major and minor version number is present.
HRESULT RoIsApiContractPresent(
PCWSTR name,
UINT16 majorVersion,
UINT16 minorVersion,
BOOL *present
);
Implementation
int RoIsApiContractPresent(Pointer<Utf16> name, int majorVersion,
int minorVersion, Pointer<BOOL> present) =>
_RoIsApiContractPresent(name, majorVersion, minorVersion, present);