Win32AppCommand.cs
author sl
Sat, 27 Dec 2014 21:35:33 +0100
changeset 45 b044174a8d7b
child 76 831ebeeecfdf
permissions -rw-r--r--
Minor changes adding file for App Command stuff.
     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 }