WinQueryTaskSizePos: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
Line 15: | Line 15: | ||
Possible returns from [[WinGetLastError]]: | Possible returns from [[WinGetLastError]]: | ||
* [[ | * [[PM Error Codes#PMERR_INVALID_PARAMETERS|PMERR_INVALID_PARAMETERS]] | ||
* [[ | * [[PM Error Codes#PMERR_INVALID_SESSION_ID|PMERR_INVALID_SESSION_ID]] | ||
== Define (C/C++) == | == Define (C/C++) == |
Revision as of 02:18, 1 December 2019
Get the size and position of the next window to be created.
Syntax
WinQueryTaskSizePos(anchorBlockHndl, sessionId, swpStruct)
Parameters
- anchorBlockHndl - HAB - input
- The anchor block handle.
- sessionId - ULONG - input
- The session identifier or zero for the current session.
- swpStruct - SWP - output
- Window size and positioning data.
Returns
Function returns BOOL of:
Possible returns from WinGetLastError:
Define (C/C++)
INCL_WINSWITCHLIST or INCL_PM or INCL_WIN
Calling Convention
Example Code
HAB anchorBlockHndl; ULONG sessionId; SWP swpStruct; BOOL rc; ... rc = WinQueryTaskSizePos(anchorBlockHndl, sessionId, swpStruct); ...
Related Functions
- WinCreateStdWindow
- WinRestoreWindowPos
- WinSetWindowPos
- WinStoreWindowPos