Windows Media Player 11 SDK WMPFolderScanState 

Windows Media Player SDK banner art

Previous Next

WMPFolderScanState

The WMPFolderScanState enumeration type defines the possible operational states of Windows Media Player as it monitors file folders for digital media content.

Syntax

  typedef enum WMPFolderScanState{
  wmpfssUnknown    = 0,
  wmpfssScanning   = 1,
  wmpfssUpdating   = 2,
  wmpfssStopped    = 3
} WMPFolderScanState;

Members

wmpfssUnknown

Not a valid state.

wmpfssScanning

Scanning folders.

wmpfssUpdating

Updating the library.

wmpfssStopped

Folder monitoring is stopped.

Remarks

A scanning operation consists of two phases: scanning and updating. During the first phase, Windows Media Player determines which digital media files to add to the library. During the second phase, the Player adds the files. You can determine the current scan state by calling IWMPFolderMonitorServices::get_scanState or by handling the FolderScanStateChange event.

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

See Also

Previous Next