added sysprog entities

This commit is contained in:
Infineon\StieberD
2024-03-25 15:17:34 -07:00
parent 600a8e1f61
commit 3a6a2b6b5b
1028 changed files with 171660 additions and 0 deletions

View File

@ -0,0 +1,38 @@
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
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////