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