mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 21:20:25 +00:00
7cbe65725a
Thu Jan 5 13:37:42 1995 Cameron Heide (heide@ee.ualberta.ca) * [memory/global.c] GlobalCompact should now return the correct value when the largest run of free blocks includes the last block. * [windows/mdi.c] Tiling and cascading windows without any MDI children should no longer crash (assuming no-op is the correct thing to do). Sun Jan 1 23:30:25 1995 Fons Botman <botman@rabo.nl> * [objects/font.c] GetTextExtentPoint: fixed debug output, str is counted string, not zero terminated. * [if1632/relay.c] DLLRelay: when debugging_stack got segv, added upper bound for stack dump.
34 lines
888 B
C
34 lines
888 B
C
/*
|
|
* *DeferWindowPos() structure and definitions
|
|
*
|
|
* Copyright 1994 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef WINPOS_H
|
|
#define WINPOS_H
|
|
|
|
#define DWP_MAGIC 0x5057 /* 'WP' */
|
|
|
|
typedef struct
|
|
{
|
|
WORD actualCount;
|
|
WORD suggestedCount;
|
|
WORD valid;
|
|
WORD wMagic;
|
|
HWND hwndParent;
|
|
WINDOWPOS winPos[1];
|
|
} DWP;
|
|
|
|
|
|
extern HWND WINPOS_NextWindowFromPoint( HWND hwnd, POINT pt );
|
|
extern HWND WINPOS_ChangeActiveWindow( HWND hwnd, BOOL mouseMsg );
|
|
extern void WINPOS_GetMinMaxInfo( HWND hwnd, POINT *maxSize, POINT *maxPos,
|
|
POINT *minTrack, POINT *maxTrack );
|
|
extern LONG WINPOS_SendNCCalcSize( HWND hwnd, BOOL calcValidRect,
|
|
RECT *newWindowRect, RECT *oldWindowRect,
|
|
RECT *oldClientRect, WINDOWPOS *winpos,
|
|
RECT *newClientRect );
|
|
extern LONG WINPOS_HandleWindowPosChanging( WINDOWPOS *winpos );
|
|
|
|
#endif /* WINPOS_H */
|