using NTwain.Data;
using NTwain.Internals;
namespace NTwain.Triplets
{
sealed class Callback2 : OpBase
{
internal Callback2(ITwainStateInternal session) : base(session) { }
///
/// This triplet is sent to the DSM by the Application to register the application’s entry point with
/// the DSM, so that the DSM can use callbacks to inform the application of events generated by the
/// DS.
///
/// The callback.
///
public ReturnCode RegisterCallback(TWCallback2 callback)
{
Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.Callback, Message.RegisterCallback);
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.RegisterCallback, callback);
}
}
}