Windows Media Format SDK banner art
PreviousNext

IWMDMDevice::GetManufacturer

The GetManufacturer method retrieves the name of the manufacturer of a media device.

Syntax

HRESULT GetManufacturer(
  LPWSTR  pwszName,
  UINT  nMaxChars
);

Parameters

  pwszName

[out]  Pointer to a (Unicode) wide character NULL-terminated string containing the manufacturer's name.

  nMaxChars

[in]  Integer containing the maximum number of characters that can be copied to pwszName.

Return Values

If the method succeeds, it returns S_OK. If it fails, it returns an HRESULT error code.

Return code Description
E_INVALIDARG The pwszName parameter is an invalid or NULL pointer.
WMDM_E_NOTSUPPORTED The device does not have a manufacturer's name.
WMDM_E_BUFFERTOOSMALL The buffer specified is too small for the return string. Check nMaxChars for the required buffer size.
E_FAIL An unspecified error occurred.

See Also

PreviousNext


© 1999 Microsoft Corporation. All rights reserved.