open-insight/SYSPROG/STPROCINS/MSWIN_SETWINDOWPOS_EQUATES.txt
2024-03-25 15:17:34 -07:00

47 lines
1.9 KiB
Plaintext

compile insert msWin_SetWindowPos_Equates
/*
** Copyright (C) 2020 Revelation Software Inc. All Rights Reserved **
Author Mr C
Date April 2020
Purpose Equates for the setWindowPos Windows API function.
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_SETWINDOWPOS_EQUATES_
#define _MSWIN_SETWINDOWPOS_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
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
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////