38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
compile insert msWin_GetWindow_Equates
|
|
/*
|
|
** Copyright (C) 2012-2017 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author : Mr C
|
|
Date : Feb 2017
|
|
Purpose : Equates for the GetWindow Windows API function.
|
|
|
|
Comments
|
|
========
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MSWIN_GETWINDOW_EQUATES_
|
|
#define _MSWIN_GETWINDOW_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
declare function msWin_GetWindow
|
|
|
|
equ GW_HWNDFIRST$ to 0
|
|
equ GW_HWNDLAST$ to 1
|
|
equ GW_HWNDNEXT$ to 2
|
|
equ GW_HWNDPREV$ to 3
|
|
equ GW_OWNER$ to 4
|
|
equ GW_CHILD$ to 5
|
|
equ GW_ENABLEDPOPUP$ to 6
|
|
equ GW_MAX$ to 6
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|