Windows Media Player 11 SDK WMPDeviceStatus 

Windows Media Player SDK banner art

Previous Next

WMPDeviceStatus

The WMPDeviceStatus enumeration type defines the possible values for the current status of a device. To use this enumeration, you must create a remoted instance of the Windows Media Player 10 or later control.

Syntax

  typedef enum WMPDeviceStatus{
  wmpdsUnknown               = 0,
  wmpdsPartnershipExists     = 1,
  wmpdsPartnershipDeclined   = 2,
  wmpdsPartnershipAnother    = 3,
  wmpdsManualDevice          = 4,
  wmpdsNewDevice             = 5,
  wmpdwLast                  = 6
} WMPDeviceStatus;

Members

wmpdsUnknown

Not a valid status.

wmpdsPartnershipExists

A partnership between Windows Media Player and the device exists.

wmpdsPartnershipDeclined

The user declined to create a partnership with the device. A device will also have this status when the partnership was deleted programmatically by calling IWMPSyncDevice::deletePartnership.

wmpdsPartnershipAnother

A partnership exists with another computer or user. Windows Media Player 10 or later allows one partnership with one computer per device.

wmpdsManualDevice

The current device supports manual transfers only.

wmpdsNewDevice

The device is a new device; Windows Media Player has information stored for the device.

wmpdsLast

Last enumerated value. Not a valid device state.

Remarks

Windows Media Player 10 Mobile: This enumeration is not supported.

Requirements

Version: Windows Media Player 10 or later.

Header: Include wmp.h.

Library: Use wmp.dll.

See Also

Previous Next