mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
25 lines
616 B
C#
25 lines
616 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
using Cosmos.Sys.FileSystem;
|
|
using System.IO;
|
|
|
|
namespace Cosmos.Sys.Plugs.VFS
|
|
{
|
|
[Plug(Target = typeof(DriveInfo))]
|
|
public static class DriveInfoImpl
|
|
{
|
|
[PlugMethod(Signature = "System_Void__System_IO_DriveInfo__ctor_System_String_")]
|
|
public static void Ctor(DriveInfo aThis, string aDriveName)
|
|
{
|
|
;
|
|
}
|
|
|
|
public static string get_DriveFormat(ref DriveInfo aThis)
|
|
{
|
|
return "DriveFormat not implemented";
|
|
}
|
|
}
|
|
}
|