11 lines
212 B
C#
11 lines
212 B
C#
using System;
|
|
|
|
namespace LibationFileManager
|
|
{
|
|
public interface IInteropFunctions
|
|
{
|
|
void SetFolderIcon(string image, string directory);
|
|
void DeleteFolderIcon(string directory);
|
|
}
|
|
}
|