mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-09 08:04:13 -04:00
15 lines
407 B
C#
15 lines
407 B
C#
using System.Diagnostics;
|
|
|
|
namespace LibationFileManager;
|
|
|
|
public interface IInteropFunctions
|
|
{
|
|
void SetFolderIcon(string image, string directory);
|
|
void SetFolderIcon(byte[] imageJpegBytes, string directory);
|
|
void DeleteFolderIcon(string directory);
|
|
Process? RunAsRoot(string exe, string args);
|
|
void InstallUpgrade(string upgradeBundle);
|
|
bool CanUpgrade { get; }
|
|
string ReleaseIdString { get; }
|
|
}
|