Cosmos/source2/Kernel/System/Cosmos.System/Filesystem/Listing/File.cs
Trivalik_cp 8cd3d9cf47 GDB Client, change function label to textbox, allows to copy the name
change filesystem to int64, logical error in Read()
fix Ldarg, Ldarga xExtraSize, now should work really 64 bit and greater
2011-06-16 20:56:22 +00:00

14 lines
No EOL
393 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.System.Filesystem.Listing {
public class File : Base {
//TODO:UInt64? Size until ulong works.. nullable types have a problem right now
public File(FileSystem aFileSystem, string aName, UInt64 aSize)
: base(aFileSystem, aName) {
mSize = aSize;
}
}
}