VerSetConditionMask function kernel32

int VerSetConditionMask(
  1. int ConditionMask,
  2. int TypeMask,
  3. int Condition
)

Sets the bits of a 64-bit value to indicate the comparison operator to use for a specified operating system version attribute. This function is used to build the dwlConditionMask parameter of the VerifyVersionInfo function.

ULONGLONG VerSetConditionMask(
[in] ULONGLONG ConditionMask,
[in] DWORD     TypeMask,
[in] BYTE      Condition
);

Implementation

int VerSetConditionMask(int ConditionMask, int TypeMask, int Condition) =>
    _VerSetConditionMask(ConditionMask, TypeMask, Condition);