compile insert msWin_SysColor_Equates /* ** Copyright (C) 1992-2024 Revelation Software Inc. All Rights Reserved ** Author Captain C Date March 2016 Purpose Equates for the GetSysColor Windows API function. Amended Date Reason ======= ==== ====== Mr C 06 Mar 24 Added SYSCOLOR_MENUBAR$, SYSCOLOR_MENUHIGHLIGHT$ */ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #ifndef _MSWIN_SYSCOLOR_EQUATES_ #define _MSWIN_SYSCOLOR_EQUATES_ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// equ SYSCOLOR_SCROLLBAR$ to 0 equ SYSCOLOR_BACKGROUND$ to 1 equ SYSCOLOR_ACTIVECAPTION$ to 2 equ SYSCOLOR_INACTIVECAPTION$ to 3 equ SYSCOLOR_MENU$ to 4 equ SYSCOLOR_WINDOW$ to 5 equ SYSCOLOR_WINDOWFRAME$ to 6 equ SYSCOLOR_MENUTEXT$ to 7 equ SYSCOLOR_WINDOWTEXT$ to 8 equ SYSCOLOR_CAPTIONTEXT$ to 9 equ SYSCOLOR_ACTIVEBORDER$ to 10 equ SYSCOLOR_INACTIVEBORDER$ to 11 equ SYSCOLOR_APPWORKSPACE$ to 12 equ SYSCOLOR_HIGHLIGHT$ to 13 equ SYSCOLOR_HIGHLIGHTTEXT$ to 14 equ SYSCOLOR_BTNFACE$ to 15 equ SYSCOLOR_BTNSHADOW$ to 0x10 equ SYSCOLOR_GRAYTEXT$ to 17 equ SYSCOLOR_BTNTEXT$ to 18 equ SYSCOLOR_INACTIVECAPTIONTEXT$ to 19 equ SYSCOLOR_BTNHIGHLIGHT$ to 20 equ SYSCOLOR_3DDKSHADOW$ to 21 equ SYSCOLOR_3DLIGHT$ to 22 equ SYSCOLOR_INFOTEXT$ to 23 equ SYSCOLOR_INFOBK$ to 24 equ SYSCOLOR_HOTLIGHT$ to 26 equ SYSCOLOR_GRADIENTACTIVECAPTION$ to 27 equ SYSCOLOR_GRADIENTINACTIVECAPTION$ to 28 equ SYSCOLOR_MENUHIGHLIGHT$ to 29 equ SYSCOLOR_MENUBAR$ to 30 equ SYSCOLOR_ENDCOLORS$ to SYSCOLOR_MENUBAR$ equ SYSCOLOR_DESKTOP$ to SYSCOLOR_BACKGROUND$ equ SYSCOLOR_3DFACE$ to SYSCOLOR_BTNFACE$ equ SYSCOLOR_3DSHADOW$ to SYSCOLOR_BTNSHADOW$ equ SYSCOLOR_3DHIGHLIGHT$ to SYSCOLOR_BTNHIGHLIGHT$ equ SYSCOLOR_3DHILIGHT$ to SYSCOLOR_BTNHIGHLIGHT$ equ SYSCOLOR_BTNHILIGHT$ to SYSCOLOR_BTNHIGHLIGHT$ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #endif /////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////