author | StephaneLenclud |
Sun, 15 Feb 2015 00:04:28 +0100 | |
changeset 54 | 7647691aa209 |
child 76 | 831ebeeecfdf |
permissions | -rw-r--r-- |
1 using System;
2 using System.Runtime.InteropServices;
4 namespace Win32
5 {
6 static public partial class Const
7 {
8 public const int WM_APPCOMMAND = 0x0319;
9 }
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 }