mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 19:49:29 +08:00
22 lines
775 B
C#
22 lines
775 B
C#
using NTwain.Data;
|
||
using NTwain.Internals;
|
||
|
||
namespace NTwain.Triplets
|
||
{
|
||
sealed class Callback : OpBase
|
||
{
|
||
internal Callback(ITwainSessionInternal session) : base(session) { }
|
||
/// <summary>
|
||
/// 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.
|
||
/// </summary>
|
||
/// <param name="callback">The callback.</param>
|
||
/// <returns></returns>
|
||
public ReturnCode RegisterCallback(TWCallback callback)
|
||
{
|
||
Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.Callback, Message.RegisterCallback);
|
||
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.RegisterCallback, callback);
|
||
}
|
||
}
|
||
} |