mirror of
https://github.com/soukoku/ntwain.git
synced 2025-12-29 02:05:04 +08:00
Missed some files.
This commit is contained in:
37
NTwain/ITwainOperation.cs
Normal file
37
NTwain/ITwainOperation.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using NTwain.Data;
|
||||
using NTwain.Triplets;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NTwain
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface for providing TWAIN triplet operations.
|
||||
/// </summary>
|
||||
public interface ITwainOperation
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the triplet operations defined for audio data group.
|
||||
/// </summary>
|
||||
DGAudio DGAudio { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the triplet operations defined for control data group.
|
||||
/// </summary>
|
||||
DGControl DGControl { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the triplet operations defined for image data group.
|
||||
/// </summary>
|
||||
DGImage DGImage { get; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Internal interface for operations use.
|
||||
/// </summary>
|
||||
interface ITwainOperationInternal : ITwainOperation
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user