Libation/Source/AppScaffolding/OSInterop/IInteropFunctions.cs
2022-08-12 13:49:51 -04:00

16 lines
329 B
C#

using System;
namespace AppScaffolding.OSInterop
{
public interface IInteropFunctions
{
// examples until the real interface is filled out
/*
public string TransformInit1();
public int TransformInit2();
public void CopyTextToClipboard(string text);
public void ShowForm();
*/
}
}