mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
27 lines
372 B
C#
27 lines
372 B
C#
|
|
namespace Aaru.Archives;
|
||
|
|
|
||
|
|
public sealed partial class Ha
|
||
|
|
{
|
||
|
|
#region Nested type: MdiSource
|
||
|
|
|
||
|
|
enum MdiSource : byte
|
||
|
|
{
|
||
|
|
MSDOS = 1,
|
||
|
|
UNIX = 2
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
|
||
|
|
#region Nested type: Method
|
||
|
|
|
||
|
|
enum Method : byte
|
||
|
|
{
|
||
|
|
Copy = 0,
|
||
|
|
ASC = 1,
|
||
|
|
HSC = 2,
|
||
|
|
Directory = 14,
|
||
|
|
Special = 15
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|