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