mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
17 lines
508 B
C#
17 lines
508 B
C#
using NTwain.Data;
|
|
using NTwain.Values;
|
|
using System;
|
|
|
|
namespace NTwain.Triplets
|
|
{
|
|
public sealed class DeviceEvent : OpBase
|
|
{
|
|
internal DeviceEvent(ITwainSessionInternal session) : base(session) { }
|
|
public ReturnCode Get(out TWDeviceEvent sourceDeviceEvent)
|
|
{
|
|
Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.DeviceEvent, Message.Get);
|
|
sourceDeviceEvent = new TWDeviceEvent();
|
|
return PInvoke.DsmEntry(Session.AppId, Session.SourceId, Message.Get, sourceDeviceEvent);
|
|
}
|
|
}
|
|
} |