terminal/src/host/globals.cpp
Dustin Howett d4d59fa339 Initial release of the Windows Terminal source code
This commit introduces all of the Windows Terminal and Console Host source,
under the MIT license.
2019-05-02 15:29:04 -07:00

19 lines
320 B
C++

// 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();
}