mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
79 lines
2.0 KiB
C#
79 lines
2.0 KiB
C#
namespace Aaru.Archives;
|
|
|
|
public sealed partial class Stfs
|
|
{
|
|
#region Nested type: ConsoleType
|
|
|
|
enum ConsoleType : byte
|
|
{
|
|
DevKit = 1,
|
|
Retail = 2
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Nested type: ContentType
|
|
|
|
enum ContentType
|
|
{
|
|
SavedGame = 0x00000001,
|
|
MarketplaceContent = 0x00000002,
|
|
Publisher = 0x00000003,
|
|
Xbox360Title = 0x00001000,
|
|
IPTVPauseBuffer = 0x00002000,
|
|
InstalledGame = 0x00004000,
|
|
XboxOriginalGame = 0x00005000,
|
|
XboxTitle = 0x00005000,
|
|
GameOnDemand = 0x00007000,
|
|
AvatarItem = 0x00009000,
|
|
Profile = 0x00010000,
|
|
GamerPicture = 0x00020000,
|
|
Theme = 0x00030000,
|
|
CacheFile = 0x00040000,
|
|
StorageDownload = 0x00050000,
|
|
XboxSavedGame = 0x00060000,
|
|
XboxDownload = 0x00070000,
|
|
GameDemo = 0x00080000,
|
|
Video = 0x00090000,
|
|
GameTitle = 0x000A0000,
|
|
Installer = 0x000B0000,
|
|
GameTrailer = 0x000C0000,
|
|
ArcadeTitle = 0x000D0000,
|
|
XNA = 0x000E0000,
|
|
LicenseStore = 0x000F0000,
|
|
Movie = 0x00100000,
|
|
TV = 0x00200000,
|
|
MusicVideo = 0x00300000,
|
|
GameVideo = 0x00400000,
|
|
PodcastVideo = 0x00500000,
|
|
ViralVideo = 0x00600000,
|
|
CommunityGame = 0x02000000
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Nested type: PackageMagic
|
|
|
|
enum PackageMagic
|
|
{
|
|
Console = 0x434F4E20,
|
|
Live = 0x4C495645,
|
|
Microsoft = 0x50495253
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Nested type: TransferFlags
|
|
|
|
enum TransferFlags : byte
|
|
{
|
|
DeepLinkSupported = 0x04,
|
|
DisableNetworkStorage = 0x08,
|
|
KinectEnabled = 0x10,
|
|
MoveOnlyTransfer = 0x20,
|
|
DeviceIdTransfer = 0x40,
|
|
ProfileIdTransfer = 0x80
|
|
}
|
|
|
|
#endregion
|
|
} |