mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Aaru.Filesystems] Reformat and cleanup.
This commit is contained in:
@@ -30,25 +30,25 @@
|
||||
|
||||
using System;
|
||||
using Aaru.CommonTypes.Interfaces;
|
||||
using commitcnt_t = System.Int32;
|
||||
using commitcnt_t = int;
|
||||
|
||||
// Disk address
|
||||
using daddr_t = System.Int32;
|
||||
using daddr_t = int;
|
||||
|
||||
// Fstore
|
||||
using fstore_t = System.Int32;
|
||||
using fstore_t = int;
|
||||
|
||||
// Global File System number
|
||||
using gfs_t = System.Int32;
|
||||
using gfs_t = int;
|
||||
|
||||
// Inode number
|
||||
using ino_t = System.Int32;
|
||||
using ino_t = int;
|
||||
|
||||
// Filesystem pack number
|
||||
using pckno_t = System.Int16;
|
||||
using pckno_t = short;
|
||||
|
||||
// Timestamp
|
||||
using time_t = System.Int32;
|
||||
using time_t = int;
|
||||
|
||||
// ReSharper disable UnusedMember.Local
|
||||
// ReSharper disable UnusedType.Local
|
||||
@@ -59,11 +59,18 @@ namespace Aaru.Filesystems;
|
||||
/// <summary>Implements detection of the Locus filesystem</summary>
|
||||
public sealed partial class Locus : IFilesystem
|
||||
{
|
||||
const string MODULE_NAME = "Locus plugin";
|
||||
|
||||
#region IFilesystem Members
|
||||
|
||||
/// <inheritdoc />
|
||||
public string Name => Localization.Locus_Name;
|
||||
|
||||
/// <inheritdoc />
|
||||
public Guid Id => new("1A70B30A-437D-479A-88E1-D0C9C1797FF4");
|
||||
|
||||
/// <inheritdoc />
|
||||
public string Author => Authors.NataliaPortillo;
|
||||
const string MODULE_NAME = "Locus plugin";
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user