using System.Diagnostics.CodeAnalysis; namespace GreenshotPlugin.UnmanagedHelpers.Enums { /// /// All possible windows messages /// See also here /// [SuppressMessage("ReSharper", "InconsistentNaming")] public enum WindowsMessages : uint { WM_MOUSEACTIVATE = 0x0021, WM_INPUTLANGCHANGEREQUEST = 0x0050, WM_INPUTLANGCHANGE = 0x0051, /// /// Sent to a window to retrieve a handle to the large or small icon associated with a window. The system displays the large icon in the ALT+TAB dialog, and the small icon in the window caption. /// A window receives this message through its WindowProc function. /// WM_GETICON message /// WM_GETICON = 0x007F, WM_CHAR = 0x0102, WM_SYSCOMMAND = 0x0112 } }