mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
17 lines
278 B
C#
17 lines
278 B
C#
namespace MicrosoftZuneLibrary
|
|
{
|
|
public enum EBurnState
|
|
{
|
|
ebsErasing = 9,
|
|
ebsStopped = 8,
|
|
ebsBurning = 7,
|
|
ebsPreparingToBurn = 6,
|
|
ebsRefreshStatusPending = 5,
|
|
ebsPlaylistItemErrors = 4,
|
|
ebsWaitingForDisc = 3,
|
|
ebsReady = 2,
|
|
ebsBusy = 1,
|
|
ebsUnknown = 0
|
|
}
|
|
}
|