You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
663 B
30 lines
663 B
// This code is distributed under MIT license.
|
|
// Copyright (c) 2015 George Mamaladze
|
|
// See license.txt or http://opensource.org/licenses/mit-license.php
|
|
|
|
using System;
|
|
|
|
namespace Gma.System.MouseKeyHook.WinApi
|
|
{
|
|
internal struct CallbackData
|
|
{
|
|
private readonly IntPtr m_LParam;
|
|
private readonly IntPtr m_WParam;
|
|
|
|
public CallbackData(IntPtr wParam, IntPtr lParam)
|
|
{
|
|
m_WParam = wParam;
|
|
m_LParam = lParam;
|
|
}
|
|
|
|
public IntPtr WParam
|
|
{
|
|
get { return m_WParam; }
|
|
}
|
|
|
|
public IntPtr LParam
|
|
{
|
|
get { return m_LParam; }
|
|
}
|
|
}
|
|
} |