15 lines
374 B
C#
15 lines
374 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace LibationFileManager
|
|
{
|
|
public interface IInteropFunctions
|
|
{
|
|
void SetFolderIcon(string image, string directory);
|
|
void DeleteFolderIcon(string directory);
|
|
Process RunAsRoot(string exe, string args);
|
|
void InstallUpgrade(string upgradeBundle);
|
|
bool CanUpgrade { get; }
|
|
}
|
|
}
|