Cosmos/source/Cosmos.Kernel.FileSystems/FAT32/DirectoryTable.cs
2008-06-07 08:52:36 +00:00

19 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.FileSystem.FAT32
{
public class DirectoryTable
{
FAT fat;
uint cluster;
public DirectoryTable(FAT fat, uint cluster)
{
this.fat = fat;
this.cluster = cluster;
}
}
}