- Notifications
You must be signed in to change notification settings - Fork 8.5k
/
Copy pathrenderFontDefaults.hpp
27 lines (20 loc) · 727 Bytes
/
renderFontDefaults.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*++
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"
classRenderFontDefaults sealed : public Microsoft::Console::Render::IFontDefaultList
{
public:
RenderFontDefaults();
~RenderFontDefaults();
[[nodiscard]] HRESULT RetrieveDefaultFontNameForCodepage(constunsignedint codePage,
std::wstring& outFaceName);
};