mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
12 lines
No EOL
291 B
C#
12 lines
No EOL
291 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFMpegCore.Arguments
|
|
{
|
|
public interface IInputOutputArgument : IArgument
|
|
{
|
|
void Pre() {}
|
|
Task During(CancellationToken? cancellationToken = null) => Task.CompletedTask;
|
|
void Post() {}
|
|
}
|
|
} |