terminal/src/interactivity/win32/windowio.hpp
N d09fdd61cb
Change backslashes in include statements to forward slashes (#8205)
Many include statements use forward slashes, while others use backwards
slashes. This is inconsistent formatting. For this reason, I changed the
backward slashes to forward slashes since that is the standard.
2020-11-25 21:02:10 +00:00

29 lines
988 B
C++

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#pragma once
#include "precomp.h"
#include "../../server/ProcessHandle.h"
#pragma hdrstop
void HandleKeyEvent(const HWND hWnd,
const UINT Message,
const WPARAM wParam,
const LPARAM lParam,
_Inout_opt_ PBOOL pfUnlockConsole);
BOOL HandleSysKeyEvent(const HWND hWnd,
const UINT Message,
const WPARAM wParam,
const LPARAM lParam,
_Inout_opt_ PBOOL pfUnlockConsole);
BOOL HandleMouseEvent(const SCREEN_INFORMATION& ScreenInfo,
const UINT Message,
const WPARAM wParam,
const LPARAM lParam);
VOID SetConsoleWindowOwner(const HWND hwnd, _Inout_opt_ ConsoleProcessHandle* pProcessData);
DWORD WINAPI ConsoleInputThreadProcWin32(LPVOID lpParameter);