WinQuerySessionTitle: Difference between revisions
Appearance
mNo edit summary |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Get the task list entry title. | |||
=== Parameters | ==Syntax== | ||
WinQuerySessionTitle(anchorBlockHndl, sessionId, titleStr, titleStrLen) | |||
== Parameters == | |||
;anchorBlockHndl - [[HAB]] - input : The anchor block handle. | ;anchorBlockHndl - [[HAB]] - input : The anchor block handle. | ||
;sessionId - [[ULONG]] - input : Session identity of the application whose title is requested or zero for the caller's session. | ;sessionId - [[ULONG]] - input : Session identity of the application whose title is requested or zero for the caller's session. | ||
Line 8: | Line 10: | ||
;titleStrLen - ULONG - input : Maximum length of the title to be returned. | ;titleStrLen - ULONG - input : Maximum length of the title to be returned. | ||
== Returns == | |||
[[ULONG]] with values of: | [[ULONG]] with values of: | ||
; Zero : Success | ; Zero : Success | ||
; Non-zero : Unsuccessful | ; Non-zero : Unsuccessful | ||
[[WinGetLastError]] could return: | [[WinGetLastError]] could return: | ||
* [[ | * [[PM Error Codes#PMERR_INVALID_PARAMETERS|PMERR_INVALID_PARAMETERS]] | ||
* [[ | * [[PM Error Codes#PMERR_INVALID_SESSION_ID|PMERR_INVALID_SESSION_ID]] | ||
== Define (C/C++) == | |||
INCL_WINSWITCHLIST or INCL_WIN or INCL_PM | INCL_WINSWITCHLIST or INCL_WIN or INCL_PM | ||
== Calling Convention == | |||
[[Cdecl32]] | [[Cdecl32]] | ||
== Example Code == | |||
HAB anchorBlockHndl; | HAB anchorBlockHndl; | ||
ULONG sessionId; | ULONG sessionId; | ||
Line 32: | Line 34: | ||
... | ... | ||
== Related Functions == | |||
*[[WinAddSwitchEntry]] | *[[WinAddSwitchEntry]] | ||
*[[WinChangeSwitchEntry]] | *[[WinChangeSwitchEntry]] |
Latest revision as of 02:19, 1 December 2019
Get the task list entry title.
Syntax
WinQuerySessionTitle(anchorBlockHndl, sessionId, titleStr, titleStrLen)
Parameters
- anchorBlockHndl - HAB - input
- The anchor block handle.
- sessionId - ULONG - input
- Session identity of the application whose title is requested or zero for the caller's session.
- titleStr - PSZ - output
- Task list title to be returned.
- titleStrLen - ULONG - input
- Maximum length of the title to be returned.
Returns
ULONG with values of:
- Zero
- Success
- Non-zero
- Unsuccessful
WinGetLastError could return:
Define (C/C++)
INCL_WINSWITCHLIST or INCL_WIN or INCL_PM
Calling Convention
Example Code
HAB anchorBlockHndl; ULONG sessionId; PSZ titleStr; ULONG titleStrLen; ULONG rc; ... rc = WinQuerySessionTitle(anchorBlockHndl, sessionId, titleStr, titleStrLen); ...