Windows Media Player 11 SDK WMPSyncState 

Windows Media Player SDK banner art

Previous Next

WMPSyncState

The WMPSyncState enumeration type defines the possible operational states of Windows Media Player as it synchronizes digital media to a device. To use this enumeration you must create a remoted instance of the Windows Media Player 10 or later control.

Syntax

  typedef enum WMPSyncState{
  wmpssUnknown         =0,
  wmpssSynchronizing  = 1,
  wmpssStopped        = 2,
  wmpssLast           = 3
} WMPSyncState;

Members

wmpssUnknown

Synchronization state is unknown.

wmpssSynchronizing

Windows Media Player is synchronizing the device.

wmpssStopped

Synchronization has stopped.

wmpssLast

Last enumerated value. Not a valid 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