Add OS-specific interop
This commit is contained in:
parent
86c7f89788
commit
aea8c11dc4
33 changed files with 1083 additions and 13 deletions
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
|
||||
namespace CrossPlatformClientExe
|
||||
{
|
||||
internal class NullInteropFunctions : IInteropFunctions
|
||||
{
|
||||
public NullInteropFunctions(params object[] values) { }
|
||||
|
||||
public string TransformInit1() => throw new PlatformNotSupportedException();
|
||||
public int TransformInit2() => throw new PlatformNotSupportedException();
|
||||
public void CopyTextToClipboard(string text) => throw new PlatformNotSupportedException();
|
||||
public void ShowForm() => throw new PlatformNotSupportedException();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue