mirror of
https://github.com/soukoku/ntwain.git
synced 2026-01-02 20:42:17 +08:00
10 lines
125 B
C#
10 lines
125 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace NTwain.Internals
|
|||
|
|
{
|
|||
|
|
interface ICommittable : IDisposable
|
|||
|
|
{
|
|||
|
|
void Commit();
|
|||
|
|
}
|
|||
|
|
}
|