SystemTrayMenu/UserInterface/ShellContextMenu/HookEventArgs.cs

12 lines
249 B
C#

using System;
namespace SystemTrayMenu.Helper
{
public class HookEventArgs : EventArgs
{
public int HookCode; // Hook code
public IntPtr wParam; // WPARAM argument
public IntPtr lParam; // LPARAM argument
}
}