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,32 @@
compile insert setWindowPos_Equates
/*
Author Captain C
Date April 2002
Purpose equates for the setWindowPos Windows API function.
Amended Date Reason
======= ==== ======
*/
declare function setWindowPos
equ SWP_NOSIZE$ to 1
equ SWP_NOMOVE$ to 2
equ SWP_NOZORDER$ to 4
equ SWP_NOREDRAW$ to 8
equ SWP_NOACTIVATE$ to 0x10
equ SWP_FRAMECHANGED$ to 0x20 ; * // The frame changed: send WM_NCCALCSIZE
equ SWP_SHOWWINDOW$ to 0x40
equ SWP_HIDEWINDOW$ to 0x80
equ SWP_NOCOPYBITS$ to 0x100
equ SWP_NOOWNERZORDER$ to 0x200 ; * // Don't do owner Z ordering
equ SWP_NOSENDCHANGING$ to 0x400 ; * // Don't send WM_WINDOWPOSCHANGING
equ SWP_DRAWFRAME$ to SWP_FRAMECHANGED$
equ SWP_NOREPOSITION$ to SWP_NOOWNERZORDER$
equ SWP_DEFERERASE$ to 0x2000
equ SWP_ASYNCWINDOWPOS$ to 0x4000
equ HWND_TOP$ to 0
equ HWND_BOTTOM$ to 1
equ HWND_TOPMOST$ to -1
equ HWND_NOTOPMOST$ to -2