コード例 #1
0
ファイル: FATStream.cs プロジェクト: zer09/Cosmos
        public FATStream(FAT fs, FileAllocationTable fat, UInt32 startcluster)
        {
            this.fs           = fs;
            this.fat          = fat;
            this.startcluster = startcluster;

            ClusterSize = fat.ClusterSize;

            Restart(0);
        }
コード例 #2
0
ファイル: FATStream.cs プロジェクト: Orvid/Cosmos
        public FATStream(FAT fs, FileAllocationTable fat, UInt32 startcluster)
        {
            this.fs = fs;
            this.fat = fat;
            this.startcluster = startcluster;

            ClusterSize = fat.ClusterSize;

            Restart(0);
        }
コード例 #3
0
 public DirectoryTable(FAT fat, uint cluster)
 {
     this.fat = fat;
     this.cluster = cluster;
 }
コード例 #4
0
 public DirectoryTable(FAT fat, uint cluster)
 {
     this.fat     = fat;
     this.cluster = cluster;
 }