2014-04-02 19:13:15 -04:00
|
|
|
|
using NTwain.Data;
|
2014-04-02 19:01:21 -04:00
|
|
|
|
using NTwain.Values;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NTwain.Triplets
|
|
|
|
|
{
|
2014-04-04 22:19:16 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents <see cref="DataArgumentType.EntryPoint"/>.
|
|
|
|
|
/// </summary>
|
2014-04-02 19:01:21 -04:00
|
|
|
|
sealed class EntryPoint : OpBase
|
|
|
|
|
{
|
2014-04-05 16:48:28 -04:00
|
|
|
|
internal EntryPoint(ITwainStateInternal session) : base(session) { }
|
2014-04-02 19:01:21 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the function entry points for twain 2.0 or higher.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="entryPoint">The entry point.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public ReturnCode Get(out TWEntryPoint entryPoint)
|
|
|
|
|
{
|
|
|
|
|
Session.VerifyState(3, 3, DataGroups.Control, DataArgumentType.EntryPoint, Message.Get);
|
|
|
|
|
entryPoint = new TWEntryPoint();
|
2014-04-16 06:53:05 -04:00
|
|
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Get, entryPoint);
|
2014-04-02 19:01:21 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|