terminal/src/host/renderFontDefaults.hpp
N d09fdd61cb
Change backslashes in include statements to forward slashes (#8205)
Many include statements use forward slashes, while others use backwards
slashes. This is inconsistent formatting. For this reason, I changed the
backward slashes to forward slashes since that is the standard.
2020-11-25 21:02:10 +00:00

28 lines
727 B
C++

/*++
Copyright (c) Microsoft Corporation
Licensed under the MIT license.
Module Name:
- renderFontDefaults.hpp
Abstract:
- This provides the implementation of the interface that abstracts the lookup of default fonts from the actual rendering engine.
Author(s):
- Michael Niksa (miniksa) Mar 2016
--*/
#pragma once
#include "../renderer/inc/IFontDefaultList.hpp"
class RenderFontDefaults sealed : public Microsoft::Console::Render::IFontDefaultList
{
public:
RenderFontDefaults();
~RenderFontDefaults();
[[nodiscard]] HRESULT RetrieveDefaultFontNameForCodepage(const unsigned int codePage,
std::wstring& outFaceName);
};