// wsk.h
NTSTATUS WskQueryProviderCharacteristics(
[in] PWSK_REGISTRATION WskRegistration,
[out] PWSK_PROVIDER_CHARACTERISTICS WskProviderCharacteristics
);
View the official Windows Driver Kit DDI referenceNo description available.
The WskQueryProviderCharacteristics function queries the range of WSK NPI versions supported by the WSK subsystem.
WskRegistration [in]A pointer to the memory location initialized by WskRegister that identifies a WSK application's registration instance.
WskProviderCharacteristics [out]A pointer to the range of WSK NPI versions supported by the WSK subsystem.
WskQueryProviderCharacteristics returns one of the following NTSTATUS codes:
| Return code | Description |
|---|---|
| STATUS_SUCCESS | The query completed successfully. |
| STATUS_DEVICE_NOT_READY | The provider NPI was not yet available. |
| Other status codes | The query failed. |
WSK clients can use this function to determine the WSK NPI versions supported by the WSK subsystem.