wiauPropsInPropSpec function (wiautil.h)

The wiauPropsInPropSpec function determines whether any of a list of property specification IDs is contained within an array of such values.

Syntax

BOOL wiauPropsInPropSpec(
       LONG           NumPropSpecs,
  [in] const PROPSPEC *pPropSpecs,
       int            NumProps,
  [in] PROPID         *pProps
);

Parameters

NumPropSpecs

Specifies the number of property specification IDs in the array pointed to by the pPropSpecs parameter.

[in] pPropSpecs

Points to the first element of the array of property specification IDs.

NumProps

Specifies the number of property specification IDs to search for.

[in] pProps

Points to the first element of the array containing the property specification IDs to search for.

Return value

This function returns TRUE as soon as it finds one of the property specification IDs given in the pProps array in the pPropSpecs array. If the function is unable to find any of the listed property specification IDs in that array, it returns FALSE.

Remarks

The wiauPropsInPropSpec function finds one or more property specification IDs within an array of property specification IDs. A related function, wiauPropInPropSpec, can be used to find a single property specification ID within such an array.

Requirements

Requirement Value
Target Platform Desktop
Header wiautil.h (include Wiautil.h)

See also

wiauPropInPropSpec