GUIDisplaySASNotice: Use the WlxDialogBoyParam function to create the SAS notice dialog.

svn path=/trunk/; revision=61581
This commit is contained in:
Eric Kohl 2014-01-11 14:43:31 +00:00
parent 6956547bc2
commit 95c15b34d7

View file

@ -184,23 +184,15 @@ static VOID
GUIDisplaySASNotice( GUIDisplaySASNotice(
IN OUT PGINA_CONTEXT pgContext) IN OUT PGINA_CONTEXT pgContext)
{ {
INT result;
TRACE("GUIDisplaySASNotice()\n"); TRACE("GUIDisplaySASNotice()\n");
/* Display the notice window */ /* Display the notice window */
result = DialogBoxParam( pgContext->pWlxFuncs->WlxDialogBoxParam(pgContext->hWlx,
pgContext->hDllInstance, pgContext->hDllInstance,
MAKEINTRESOURCE(IDD_NOTICE_DLG), MAKEINTRESOURCEW(IDD_NOTICE_DLG),
GetDesktopWindow(), GetDesktopWindow(),
EmptyWindowProc, EmptyWindowProc,
(LPARAM)NULL); (LPARAM)NULL);
if (result == -1)
{
/* Failed to display the window. Do as if the user
* already has pressed CTRL+ALT+DELETE */
pgContext->pWlxFuncs->WlxSasNotify(pgContext->hWlx, WLX_SAS_TYPE_CTRL_ALT_DEL);
}
} }
/* Get the text contained in a textbox. Allocates memory in pText /* Get the text contained in a textbox. Allocates memory in pText