mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
25 lines
749 B
C#
25 lines
749 B
C#
using NTwain.Data;
|
|
using NTwain.Values;
|
|
using System;
|
|
|
|
namespace NTwain.Triplets
|
|
{
|
|
/// <summary>
|
|
/// Represents <see cref="DataArgumentType.EntryPoint"/>.
|
|
/// </summary>
|
|
sealed class EntryPoint : OpBase
|
|
{
|
|
internal EntryPoint(ITwainStateInternal session) : base(session) { }
|
|
/// <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();
|
|
return PInvoke.DsmEntry(Session.AppId, Session.SourceId, Message.Get, entryPoint);
|
|
}
|
|
}
|
|
} |