https://git.reactos.org/?p=reactos.git;a=commitdiff;h=8a83c24419034eb015327…
commit 8a83c24419034eb0153278c3cc2e92064dc692c7
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Sun Jun 10 03:59:22 2018 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Sun Jun 10 04:00:18 2018 +0200
[CONSRV] Don't show the newly-created console if the window station, on which the
console is created, is not interactive.
---
win32ss/user/winsrv/consrv/frontends/gui/guiterm.c | 23 ++++++++++++++++------
1 file changed, 17 insertions(+), 6 deletions(-)
diff --git a/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c
b/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c
index e371ea484a..1b6120ec63 100644
--- a/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c
+++ b/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c
@@ -203,9 +203,7 @@ GuiConsoleInputThread(PVOID Param)
if (GuiData->GuiInfo.FullScreen) SwitchFullScreen(GuiData, TRUE);
DPRINT("PM_CREATE_CONSOLE -- showing window\n");
- // ShowWindow(NewWindow, (int)GuiData->GuiInfo.ShowWindow);
ShowWindowAsync(NewWindow, (int)GuiData->GuiInfo.ShowWindow);
- DPRINT("Window showed\n");
}
else
{
@@ -1174,6 +1172,7 @@ GuiLoadFrontEnd(IN OUT PFRONTEND FrontEnd,
{
PCONSOLE_START_INFO ConsoleStartInfo;
PGUI_INIT_INFO GuiInitInfo;
+ USEROBJECTFLAGS UserObjectFlags;
if (FrontEnd == NULL || ConsoleInfo == NULL || ConsoleInitInfo == NULL)
return STATUS_INVALID_PARAMETER;
@@ -1194,6 +1193,21 @@ GuiLoadFrontEnd(IN OUT PFRONTEND FrontEnd,
return STATUS_UNSUCCESSFUL;
}
+ GuiInitInfo->IsWindowVisible = ConsoleInitInfo->IsWindowVisible;
+ if (GuiInitInfo->IsWindowVisible)
+ {
+ /* Don't show the console if the window station is not interactive */
+ if (GetUserObjectInformationW(GuiInitInfo->WinSta,
+ UOI_FLAGS,
+ &UserObjectFlags,
+ sizeof(UserObjectFlags),
+ NULL))
+ {
+ if (!(UserObjectFlags.dwFlags & WSF_VISIBLE))
+ GuiInitInfo->IsWindowVisible = FALSE;
+ }
+ }
+
/*
* Load terminal settings
*/
@@ -1209,7 +1223,7 @@ GuiLoadFrontEnd(IN OUT PFRONTEND FrontEnd,
GuiInitInfo->TermInfo.ShowWindow = SW_SHOWNORMAL;
- if (ConsoleInitInfo->IsWindowVisible)
+ if (GuiInitInfo->IsWindowVisible)
{
/* 2. Load the remaining console settings via the registry */
if ((ConsoleStartInfo->dwStartupFlags & STARTF_TITLEISLINKNAME) == 0)
@@ -1256,7 +1270,6 @@ GuiLoadFrontEnd(IN OUT PFRONTEND FrontEnd,
// Display
GuiInitInfo->TermInfo.FullScreen = ConsoleInfo->FullScreen;
- // GuiInitInfo->TermInfo.ShowWindow;
GuiInitInfo->TermInfo.AutoPosition = ConsoleInfo->AutoPosition;
GuiInitInfo->TermInfo.WindowOrigin = ConsoleInfo->WindowPosition;
@@ -1273,8 +1286,6 @@ GuiLoadFrontEnd(IN OUT PFRONTEND FrontEnd,
// ASSERT(GuiInitInfo->hIcon && GuiInitInfo->hIconSm);
- GuiInitInfo->IsWindowVisible = ConsoleInitInfo->IsWindowVisible;
-
/* Finally, initialize the frontend structure */
FrontEnd->Vtbl = &GuiVtbl;
FrontEnd->Context = NULL;