mirror of
https://github.com/oMaN-Rod/nxDumpFuse.git
synced 2025-01-15 20:21:28 +00:00
17 lines
434 B
C#
17 lines
434 B
C#
using System.Collections.Generic;
|
|
using nxDumpFuse.Events;
|
|
|
|
namespace nxDumpFuse.Services
|
|
{
|
|
public interface IFuseService
|
|
{
|
|
public event EventHandlers.FuseUpdateEventHandler? FuseUpdateEvent;
|
|
public event EventHandlers.FuseSimpleLogEventHandler? FuseSimpleLogEvent;
|
|
|
|
void Start(string inputFilePath, string outputDir);
|
|
|
|
void Stop();
|
|
|
|
void FuseFiles(List<string> inputFiles);
|
|
}
|
|
}
|