mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
17 lines
400 B
C#
17 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Cosmos.Debug.Kernel;
|
|
|
|
namespace Cosmos.System.FileSystem.FAT
|
|
{
|
|
public class FatFileStream : BaseFatStream
|
|
{
|
|
public FatFileStream(Listing.FatFile aFile):base(aFile, aFile.FileSystem, aFile.FirstClusterNum)
|
|
{
|
|
}
|
|
}
|
|
}
|