mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-15 18:45:44 +00:00
12 lines
No EOL
267 B
C#
12 lines
No EOL
267 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFMpegCore.Arguments
|
|
{
|
|
public interface IInputOutputArgument : IArgument
|
|
{
|
|
void Pre();
|
|
Task During(CancellationToken cancellationToken = default);
|
|
void Post();
|
|
}
|
|
} |