Win32AppCommand.cs
author StephaneLenclud
Tue, 03 Mar 2015 21:07:44 +0100
changeset 69 b27d6b8527e2
child 76 831ebeeecfdf
permissions -rw-r--r--
Bunch of minor fixes, device list format.
     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 }