mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 17:53:06 -06:00
27 lines
426 B
C++
27 lines
426 B
C++
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
|
|
#include "precomp.h"
|
|
|
|
#include "GdiEngine.h"
|
|
|
|
using namespace Microsoft::Console::Types;
|
|
using namespace Microsoft::Console::Render;
|
|
|
|
GdiEngine::GdiEngine()
|
|
{
|
|
}
|
|
|
|
GdiEngine::~GdiEngine()
|
|
{
|
|
}
|
|
|
|
void GdiEngine::WaitUntilCanRender()
|
|
{
|
|
}
|
|
|
|
void GdiEngine::Render(RenderingPayload& payload)
|
|
{
|
|
UNREFERENCED_PARAMETER(payload);
|
|
}
|