16 lines
329 B
C#
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();
|
|
*/
|
|
}
|
|
}
|