38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
compile insert msWin_WindowSizing_Equates
|
|
/*
|
|
** Copyright (C) 2013-2014 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author Mr C
|
|
Date Sept 2014
|
|
Purpose Equates for use with the WM_SIZING message
|
|
|
|
Comments
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
mtr 12 Dec 2014 Git sucks
|
|
|
|
*/
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MSWIN_WINDOWSIZING_EQUATES_
|
|
#define _MSWIN_WINDOWSIZING_EQUATES_
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ WMSZ_LEFT$ to 1
|
|
equ WMSZ_RIGHT$ to 2
|
|
equ WMSZ_TOP$ to 3
|
|
equ WMSZ_TOPLEFT$ to 4
|
|
equ WMSZ_TOPRIGHT$ to 5
|
|
equ WMSZ_BOTTOM$ to 6
|
|
equ WMSZ_BOTTOMLEFT$ to 7
|
|
equ WMSZ_BOTTOMRIGHT$ to 8
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|