mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
16 lines
316 B
C#
16 lines
316 B
C#
namespace MicrosoftZuneLibrary
|
|
{
|
|
public enum EBurnProgressStatus
|
|
{
|
|
ebpsComplete = 8,
|
|
ebpsFinalizing = 7,
|
|
ebpsReadyToWriteToCD = 6,
|
|
ebpsTAOConvertingAndWriting = 5,
|
|
ebpsConvertingTrack = 4,
|
|
ebpsInspectingFile = 3,
|
|
ebpsWritingImageToCD = 2,
|
|
ebpsAddingFileToCDImage = 1,
|
|
ebpsConvertingFile = 0
|
|
}
|
|
}
|