terminal/src/interactivity/win32/InputServices.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

30 lines
723 B
C++

/*++
Copyright (c) Microsoft Corporation
Licensed under the MIT license.
Module Name:
- InputServices.hpp
Abstract:
- Win32 implementation of the IInputServices interface.
Author(s):
- Hernan Gatta (HeGatta) 29-Mar-2017
--*/
#include "../inc/IInputServices.hpp"
namespace Microsoft::Console::Interactivity::Win32
{
class InputServices final : public IInputServices
{
public:
// Inherited via IInputServices
~InputServices() = default;
UINT MapVirtualKeyW(UINT uCode, UINT uMapType);
SHORT VkKeyScanW(WCHAR ch);
SHORT GetKeyState(int nVirtKey);
BOOL TranslateCharsetInfo(DWORD* lpSrc, LPCHARSETINFO lpCs, DWORD dwFlags);
};
}