mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
18 lines
405 B
C#
18 lines
405 B
C#
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.System.Plugs.System
|
|
{
|
|
[Plug(TargetName = "System.Mda, mscorlib")]
|
|
public static class Mda
|
|
{
|
|
public static bool IsStreamWriterBufferedDataLostEnabled()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public static bool IsStreamWriterBufferedDataLostCaptureAllocatedCallStack()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|