/// /// Copyright © 2003-2008 JetBrains s.r.o. /// You may distribute under the terms of the GNU General Public License, as published by the Free Software Foundation, version 2 (see License.txt in the repository root folder). /// namespace JetBrains.Interop.WinApi { /// /// WM_ACTIVATE wParam loword value. /// public enum WmActivateCodes : uint { /// /// Deactivated. /// Inactive = 0, /// /// Activated by some method other than a mouse click (for example, by a call to the function or by use of the keyboard interface to select the window). /// Active = 1, /// /// Activated by a mouse click. /// ClickActive = 2, } }