Merged PR 3412993: [Git2Git] Git Train: FI of official/rs_onecore_dep into official/rs_onecore_dep_acioss Retrieved from https://microsoft.visualstudio.com os OS official/rs_onecore_dep_acioss 9638166d8c8374081a2aa8b8f9ecabf2bae0df0a

[Git2Git] Git Train: FI of official/rs_onecore_dep into official/rs_onecore_dep_acioss Retrieved from https://microsoft.visualstudio.com os OS official/rs_onecore_dep_acioss 9638166d8c8374081a2aa8b8f9ecabf2bae0df0a

Related work items: #18974333
This commit is contained in:
Michael Niksa 2019-06-21 00:48:20 +00:00 committed by Dustin Howett
parent c0aae69056
commit c907f5966a
8 changed files with 13 additions and 2 deletions

View file

@ -17,6 +17,8 @@ Author(s):
#pragma once
#include <functional>
#include "../types/inc/Viewport.hpp"
namespace Microsoft::Console::Interactivity::Win32

View file

@ -35,8 +35,6 @@ typedef NTSTATUS *PNTSTATUS;
#include <winuser.h>
#include <uxtheme.h>
#include <cwchar>
// Only remaining item from w32gdip.h. There's probably a better way to do this as well.

View file

@ -4,6 +4,7 @@
#include "precomp.h"
#include "TerminalPage.h"
#include "ColorControl.h"
#include <functional>
// From conattrs.h
const COLORREF INVALID_COLOR = 0xffffffff;

View file

@ -5,6 +5,8 @@
#include "../../renderer/inc/RenderEngineBase.hpp"
#include <functional>
#include <dxgi.h>
#include <dxgi1_2.h>

View file

@ -10,6 +10,8 @@ Abstract:
*/
#pragma once
#include <functional>
#include "../adapter/termDispatch.hpp"
#include "telemetry.hpp"
#include "IStateMachineEngine.hpp"

View file

@ -14,6 +14,7 @@ Author:
#pragma once
#include "convert.hpp"
#include <functional>
static_assert(sizeof(unsigned int) == sizeof(wchar_t) * 2,
"UnicodeRange expects to be able to store a unicode codepoint in an unsigned int");

View file

@ -9,6 +9,9 @@ Abstract:
*/
#include <functional>
#include <string_view>
bool IsGlyphFullWidth(const std::wstring_view glyph);
bool IsGlyphFullWidth(const wchar_t wch);
void SetGlyphWidthFallback(std::function<bool(std::wstring_view)> pfnFallback);

View file

@ -15,6 +15,8 @@ Author:
#pragma once
#include <deque>
#include <string>
#include <string_view>
#include <memory>
#include "IInputEvent.hpp"