Windows Media Player 11 SDK WMPBurnStateĀ 

Windows Media Player SDK banner art

Previous Next

WMPBurnState

The WMPBurnState enumeration type defines the possible operational states of Windows Media Player as it burns a CD.

Syntax

  typedef enum WMPBurnState{
  wmpbsUnknown                  = 0,
  wmpbsBusy                     = 1,
  wmpbsReady                    = 2,
  wmpbsWaitingForDisc           = 3,
  wmpbsRefreshStatusPending     = 4,
  wmpbsPreparingToBurn          = 5,
  wmpbsBurning                  = 6,
  wmpbsStopped                  = 7,
  wmpbsErasing                  = 8
} WMPBurnState;

Members

wmpbsUnknown

Not a valid state.

wmpbsBusy

Windows Media Player is busy. Try again in a moment.

wmpbsReady

Ready to begin burning a CD.

wmpbsWaitingForDisc

Waiting for the disc to become available.

wmpbsRefreshStatusPending

The burn playlist has changed. Call IWMPCdromBurn::refreshStatus.

wmpbsPreparingToBurn

Windows Media Player is preparing to burn the CD.

wmpbsBurning

The CD is being burned.

wmpbsStopped

The burning operation is stopped.

wmpbsErasing

Windows Media Player is erasing the CD.

Remarks

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

Requirements

Version: Windows Media Player 11.

Header: Include wmp.h.

Library: Use wmp.dll.

See Also

Previous Next