mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
16 lines
225 B
C#
16 lines
225 B
C#
namespace Microsoft.Zune.Service
|
|
{
|
|
public enum EDownloadFlags
|
|
{
|
|
Stream = 0x40,
|
|
HD = 0x80,
|
|
Rental = 0x20,
|
|
DeviceLicensed = 8,
|
|
CanBeOffline = 4,
|
|
UserCard = 2,
|
|
Channel = 1,
|
|
None = 0,
|
|
Subscription = 0x10
|
|
}
|
|
}
|