Files
ntwain/src/NTwain/Data/Win32/MSG.cs
2018-11-23 15:35:31 -05:00

24 lines
483 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace NTwain.Data.Win32
{
/// <summary>
/// The MSG structure in Windows for TWAIN use.
/// </summary>
[StructLayout(LayoutKind.Sequential)]
struct MSG
{
public IntPtr hwnd;
public uint message;
public IntPtr wParam;
public IntPtr lParam;
int time;
int x;
int y;
}
}