terminal/src/host/globals.cpp

19 lines
320 B
C++
Raw Normal View History

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#include "precomp.h"
#include "globals.h"
#pragma hdrstop
CONSOLE_INFORMATION& Globals::getConsoleInformation()
{
return ciConsoleInformation;
}
bool Globals::IsHeadless() const
{
return launchArgs.IsHeadless();
}