Win32AppCommand.cs
author StephaneLenclud
Sun, 15 Feb 2015 10:50:09 +0100
changeset 55 08c70af8af84
child 76 831ebeeecfdf
permissions -rw-r--r--
HidDevice consolidating contruction.
     1 using System;
     2 using System.Runtime.InteropServices;
     3 
     4 namespace Win32
     5 {
     6     static public partial class Const
     7     {
     8         public const int WM_APPCOMMAND = 0x0319;
     9     }
    10 
    11     static public partial class Macro
    12     {
    13         public static int GET_APPCOMMAND_LPARAM(IntPtr lParam)
    14         {
    15             return ((short)HIWORD(lParam.ToInt32()) & ~Const.FAPPCOMMAND_MASK);
    16         }
    17     }
    18 }