compile insert msWin_ShowWindow_Equates /* ** Copyright (C) 2012 Revelation Software Inc. All Rights Reserved ** Author Captain C, BSG Revelation Date Oktober 2012 Purpose Equates for the ShowWindow Windows API function. The SW_ constants may also be mapped onto a form's VISIBLE property Amended Date Reason ======= ==== ====== */ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #ifndef _MSWIN_SHOWWINDOW_EQUATES_ #define _MSWIN_SHOWWINDOW_EQUATES_ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// equ SW_HIDE$ to 0 equ SW_SHOWNORMAL$ to 1 equ SW_NORMAL$ to 1 equ SW_SHOWMINIMIZED$ to 2 equ SW_SHOWMAXIMIZED$ to 3 equ SW_MAXIMIZE$ to 3 equ SW_SHOWNOACTIVATE$ to 4 equ SW_SHOW$ to 5 equ SW_MINIMIZE$ to 6 equ SW_SHOWMINNOACTIVE$ to 7 equ SW_SHOWNA$ to 8 equ SW_RESTORE$ to 9 /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #endif /////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////