This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
UpTool2/UpToolLib/DataStructures/IExternalFunctionality.cs
CreepyCrafter24 023f452b26 Add CLI Tool
2020-03-24 20:53:23 +01:00

16 lines
447 B
C#

using System;
namespace UpToolLib.DataStructures
{
public interface IExternalFunctionality
{
public Tuple<bool, byte[]> Download(Uri link);
public string FetchImageB64(Uri link);
public bool YesNoDialog(string text, bool defaultVal);
public void OKDialog(string text);
public object GetDefaultIcon();
public object ImageFromB64(string b64);
public void Log(string text);
}
}