IPortableDeviceServiceManager::GetDeviceForService method (portabledeviceapi.h)

The GetDeviceForService method retrieves the device associated with the specified service.

Syntax

HRESULT GetDeviceForService(
  [in]  LPCWSTR pszPnPServiceID,
  [out] LPWSTR  *ppszPnPDeviceID
);

Parameters

[in] pszPnPServiceID

The Plug and Play (PnP) identifier of the service.

[out] ppszPnPDeviceID

The retrieved PnP identifier of the device associated with the service.

Return value

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

Return code Description
S_OK
The method succeeded.
E_POINTER
An invalid pointer was supplied.

Remarks

Neither the pszPnPServiceID parameter nor the pszPnPDeviceID parameter can be NULL.

An application can retrieve a PnP service identifier by calling the GetDeviceServices method.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps | UWP apps]
Minimum supported server None supported
Target Platform Windows
Header portabledeviceapi.h

See also

IPortableDeviceServiceManager Interface