예제 #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;
 }