inbox: reflect incoming changes from Windows (#1359)

official/rs_onecore_dep_acioss 9638166d8c8374081a2aa8b8f9ecabf2bae0df0a
This commit is contained in:
Dustin L. Howett (MSFT) 2019-06-20 17:51:04 -07:00 committed by GitHub
parent 66cb7c4b58
commit 08464648f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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"