mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 18:43:54 -06:00
parent
fb75fb56c0
commit
f8506f4779
@ -26,7 +26,12 @@
|
||||
"/doc/user-docs/",
|
||||
"/src/tools/ansi-color/",
|
||||
"/src/tools/ColorTool/",
|
||||
"/src/tools/scratch/",
|
||||
"/src/tools/ConsoleBench/",
|
||||
"/src/tools/schemes-fragment/",
|
||||
"/scratch/",
|
||||
"/tools/ReleaseEngineering/",
|
||||
"/policies/",
|
||||
"Scratch.sln",
|
||||
],
|
||||
"SuffixFilters": [
|
||||
@ -44,6 +49,11 @@
|
||||
".rec",
|
||||
".err",
|
||||
"XamlStyler.json",
|
||||
".xlsx"
|
||||
".xlsx",
|
||||
".vcxproj",
|
||||
".vcxproj.filters",
|
||||
".Build.props",
|
||||
".Build.targets",
|
||||
"OpenConsole.slnx"
|
||||
]
|
||||
}
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
DIRS=\
|
||||
fmt \
|
||||
@ -81,6 +81,7 @@ SOURCES = \
|
||||
..\writeData.cpp \
|
||||
..\renderData.cpp \
|
||||
..\renderFontDefaults.cpp \
|
||||
..\AccessibilityNotifier.cpp \
|
||||
..\ConsoleArguments.cpp \
|
||||
|
||||
|
||||
|
||||
@ -12,6 +12,10 @@ using namespace Microsoft::Console::Interactivity::OneCore;
|
||||
|
||||
#pragma region IConsoleControl Members
|
||||
|
||||
void ConsoleControl::Control(ControlType /*command*/, PVOID /*ptr*/, DWORD /*len*/) noexcept
|
||||
{
|
||||
}
|
||||
|
||||
void ConsoleControl::NotifyWinEvent(DWORD /*event*/, HWND /*hwnd*/, LONG /*idObject*/, LONG /*idChild*/) noexcept
|
||||
{
|
||||
}
|
||||
|
||||
@ -24,6 +24,7 @@ namespace Microsoft::Console::Interactivity::OneCore
|
||||
{
|
||||
public:
|
||||
// IConsoleControl Members
|
||||
void Control(ControlType command, PVOID ptr, DWORD len) noexcept override;
|
||||
void NotifyWinEvent(DWORD event, HWND hwnd, LONG idObject, LONG idChild) noexcept override;
|
||||
void NotifyConsoleApplication(_In_ DWORD dwProcessId) noexcept override;
|
||||
void SetForeground(_In_ HANDLE hProcess, _In_ BOOL fForeground) noexcept override;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user