Files
Aaru/FileSystemIDandChk/Plugins/FFS.cs
Natalia Portillo 4f089c1539 Added skeleton for BSD FFS.
Added HFS+.
If HFS detects it has wrapped a HFS+ volume, inform that it's not its filesystem.
Added a workaround in calculation with UInt32 and ulong that made HFS and MFS show a bad date.


git-svn-id: svn://claunia.com/FileSystemIDandChk@2 17725271-3d32-4980-a8cb-9ff532f270ba
2011-03-06 00:25:11 +00:00

20 lines
379 B
C#

/*using System;
using System.IO;
using System.Text;
using FileSystemIDandChk;
namespace FileSystemIDandChk
{
public class FFS
{
private DateTime UNIXDateDelta = new DateTime(1970, 01, 01, 00, 00, 00);
public FFS ()
{
base.Name = "Apple Hierarchical File System";
base.PluginUUID = new Guid("8f4ee9d5-6820-4d7a-ae6b-3a4a49e7a88f");
}
}
}
*/