WlxDisplayStatusMessage function (winwlx.h)

[The WlxDisplayStatusMessage function is no longer available for use as of Windows Server 2008 and Windows Vista.]

The WlxDisplayStatusMessage function must be implemented by a replacement GINA DLL. Winlogon calls this function when the GINA DLL should display a message.

Note   GINA DLLs are ignored in Windows Vista.
 

Syntax

BOOL WlxDisplayStatusMessage(
  [in] PVOID pWlxContext,
  [in] HDESK hDesktop,
  [in] DWORD dwOptions,
  [in] PWSTR pTitle,
  [in] PWSTR pMessage
);

Parameters

[in] pWlxContext

Pointer to the GINA context associated with this window station. The GINA returns this context value when Winlogon calls WlxInitialize for this station.

[in] hDesktop

A handle to the desktop where the status message should be displayed.

[in] dwOptions

Specifies display options for the status dialog box. The following options are valid:

STATUSMSG_OPTION_NOANIMATION

STATUSMSG_OPTION_SETFOREGROUND

[in] pTitle

Pointer to a null-terminated wide character string that specifies the title of the message to be displayed.

[in] pMessage

Pointer to a null-terminated wide character string that specifies the message to be displayed.

Return value

Return code Description
TRUE
Returns TRUE if the message was displayed.
FALSE
Returns FALSE if the message was not displayed.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header winwlx.h

See also

WlxInitialize