sl@45: using System; sl@45: using System.Runtime.InteropServices; sl@45: sl@45: namespace Win32 sl@45: { sl@45: static public partial class Const sl@45: { sl@45: public const int WM_APPCOMMAND = 0x0319; sl@45: } sl@45: sl@45: static public partial class Macro sl@45: { sl@45: public static int GET_APPCOMMAND_LPARAM(IntPtr lParam) sl@45: { sl@45: return ((short)HIWORD(lParam.ToInt32()) & ~Const.FAPPCOMMAND_MASK); sl@45: } sl@45: } sl@45: }