Skip to content

Commit f8506f4

Browse files
authored
Fix the Windows/razzle build after #19344 (#19590)
1 parent fb75fb5 commit f8506f4

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

consolegit2gitfilters.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@
2626
"/doc/user-docs/",
2727
"/src/tools/ansi-color/",
2828
"/src/tools/ColorTool/",
29+
"/src/tools/scratch/",
30+
"/src/tools/ConsoleBench/",
31+
"/src/tools/schemes-fragment/",
2932
"/scratch/",
33+
"/tools/ReleaseEngineering/",
34+
"/policies/",
3035
"Scratch.sln",
3136
],
3237
"SuffixFilters": [
@@ -44,6 +49,11 @@
4449
".rec",
4550
".err",
4651
"XamlStyler.json",
47-
".xlsx"
52+
".xlsx",
53+
".vcxproj",
54+
".vcxproj.filters",
55+
".Build.props",
56+
".Build.targets",
57+
"OpenConsole.slnx"
4858
]
4959
}

src/dep/dirs

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/host/sources.inc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ SOURCES = \
8181
..\writeData.cpp \
8282
..\renderData.cpp \
8383
..\renderFontDefaults.cpp \
84+
..\AccessibilityNotifier.cpp \
8485
..\ConsoleArguments.cpp \
8586

8687

src/interactivity/onecore/ConsoleControl.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ using namespace Microsoft::Console::Interactivity::OneCore;
1212

1313
#pragma region IConsoleControl Members
1414

15+
void ConsoleControl::Control(ControlType /*command*/, PVOID /*ptr*/, DWORD /*len*/) noexcept
16+
{
17+
}
18+
1519
void ConsoleControl::NotifyWinEvent(DWORD /*event*/, HWND /*hwnd*/, LONG /*idObject*/, LONG /*idChild*/) noexcept
1620
{
1721
}

src/interactivity/onecore/ConsoleControl.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace Microsoft::Console::Interactivity::OneCore
2424
{
2525
public:
2626
// IConsoleControl Members
27+
void Control(ControlType command, PVOID ptr, DWORD len) noexcept override;
2728
void NotifyWinEvent(DWORD event, HWND hwnd, LONG idObject, LONG idChild) noexcept override;
2829
void NotifyConsoleApplication(_In_ DWORD dwProcessId) noexcept override;
2930
void SetForeground(_In_ HANDLE hProcess, _In_ BOOL fForeground) noexcept override;

0 commit comments

Comments
 (0)