What does NTSTATUS 0xC01E032F (STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE) mean?

 
Previous Next
STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE STATUS_GRAPHICS_RESOURCES_NOT_RELATED

STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE

The target subset selector is not one of the valid VidPN forms

Some VidPN operations ask for a subset of targets rather than every target on the adapter. The subset type tells the interface which grouping rule to apply. This status means the selector itself is not valid for the interface call.

Look for an uninitialized enum value, a version mismatch in caller-side structures, or code that passes a source-subset concept to a target-subset function. It is a contract problem in the parameters, not evidence that a particular monitor failed.

What to check

  • Log the numeric subset type and the structure size passed to the interface.
  • Make sure the call uses target-subset constants, not source-set or topology recommendation values.
  • Initialize all VidPN parameter structures before setting only selected fields.

References


Looking for a different code? Search another status or error code.