mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move to file scoped namespaces.
This commit is contained in:
@@ -30,31 +30,30 @@
|
||||
// Copyright © 2011-2022 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
public sealed partial class Imd
|
||||
{
|
||||
enum TransferRate : byte
|
||||
{
|
||||
/// <summary>500 kbps in FM mode</summary>
|
||||
FiveHundred = 0,
|
||||
/// <summary>300 kbps in FM mode</summary>
|
||||
ThreeHundred = 1,
|
||||
/// <summary>250 kbps in FM mode</summary>
|
||||
TwoHundred = 2,
|
||||
/// <summary>500 kbps in MFM mode</summary>
|
||||
FiveHundredMfm = 3,
|
||||
/// <summary>300 kbps in MFM mode</summary>
|
||||
ThreeHundredMfm = 4,
|
||||
/// <summary>250 kbps in MFM mode</summary>
|
||||
TwoHundredMfm = 5
|
||||
}
|
||||
namespace Aaru.DiscImages;
|
||||
|
||||
enum SectorType : byte
|
||||
{
|
||||
Unavailable = 0, Normal = 1, Compressed = 2,
|
||||
Deleted = 3, CompressedDeleted = 4, Error = 5,
|
||||
CompressedError = 6, DeletedError = 7, CompressedDeletedError = 8
|
||||
}
|
||||
public sealed partial class Imd
|
||||
{
|
||||
enum TransferRate : byte
|
||||
{
|
||||
/// <summary>500 kbps in FM mode</summary>
|
||||
FiveHundred = 0,
|
||||
/// <summary>300 kbps in FM mode</summary>
|
||||
ThreeHundred = 1,
|
||||
/// <summary>250 kbps in FM mode</summary>
|
||||
TwoHundred = 2,
|
||||
/// <summary>500 kbps in MFM mode</summary>
|
||||
FiveHundredMfm = 3,
|
||||
/// <summary>300 kbps in MFM mode</summary>
|
||||
ThreeHundredMfm = 4,
|
||||
/// <summary>250 kbps in MFM mode</summary>
|
||||
TwoHundredMfm = 5
|
||||
}
|
||||
|
||||
enum SectorType : byte
|
||||
{
|
||||
Unavailable = 0, Normal = 1, Compressed = 2,
|
||||
Deleted = 3, CompressedDeleted = 4, Error = 5,
|
||||
CompressedError = 6, DeletedError = 7, CompressedDeletedError = 8
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user