mirror of
https://github.com/soukoku/ntwain.git
synced 2025-11-24 08:47:06 +08:00
24 lines
483 B
C#
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;
|
|
}
|
|
}
|