mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-07-08 18:16:24 +00:00
Add aaruformat error enums
This commit is contained in:
@@ -221,7 +221,32 @@ public sealed partial class AaruFormat
|
|||||||
/// Requested flux data not present in image.
|
/// Requested flux data not present in image.
|
||||||
/// <remarks>AARUF_ERROR_FLUX_DATA_NOT_FOUND</remarks>
|
/// <remarks>AARUF_ERROR_FLUX_DATA_NOT_FOUND</remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
FluxDataNotFound = -32
|
FluxDataNotFound = -32,
|
||||||
|
/// <summary>
|
||||||
|
/// Image requires features not supported by this library.
|
||||||
|
/// <remarks>AARUF_ERROR_INCOMPATIBLE_FEATURES</remarks>
|
||||||
|
/// </summary>
|
||||||
|
IncompatibleFeatures = -33,
|
||||||
|
/// <summary>
|
||||||
|
/// AES sector encryption failed.
|
||||||
|
/// <remarks>AARUF_ERROR_CANNOT_ENCRYPT_SECTOR</remarks>
|
||||||
|
/// </summary>
|
||||||
|
CannotEncryptSector = -34,
|
||||||
|
/// <summary>
|
||||||
|
/// AES sector decryption failed.
|
||||||
|
/// <remarks>AARUF_ERROR_CANNOT_DECRYPT_SECTOR</remarks>
|
||||||
|
/// </summary>
|
||||||
|
CannotDecryptSector = -35,
|
||||||
|
/// <summary>
|
||||||
|
/// Required encryption key not present in media tags.
|
||||||
|
/// <remarks>AARUF_ERROR_MISSING_ENCRYPTION_KEY</remarks>
|
||||||
|
/// </summary>
|
||||||
|
MissingEncryptionKey = -36,
|
||||||
|
/// <summary>
|
||||||
|
/// Image has no user-data DDT (e.g. flux-only image); sector data is unavailable.
|
||||||
|
/// <remarks>AARUF_ERROR_USER_DATA_NOT_PRESENT</remarks>
|
||||||
|
/// </summary>
|
||||||
|
UserDataNotPresent = -37,
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
Reference in New Issue
Block a user