terminal/src/interactivity/inc/Module.hpp
Dustin Howett d4d59fa339 Initial release of the Windows Terminal source code
This commit introduces all of the Windows Terminal and Console Host source,
under the MIT license.
2019-05-02 15:29:04 -07:00

31 lines
633 B
C++

/*++
Copyright (c) Microsoft Corporation
Licensed under the MIT license.
Module Name:
- Module.hpp
Abstract:
- Lists all the interfaces for which there exist multiple implementations that
can be picked amongst depending on API's available on the host OS.
Author(s):
- Hernan Gatta (HeGatta) 29-Mar-2017
--*/
#pragma once
namespace Microsoft::Console::Interactivity
{
enum class Module
{
AccessibilityNotifier,
ConsoleControl,
ConsoleInputThread,
ConsoleWindowMetrics,
HighDpiApi,
InputServices,
SystemConfigurationProvider
};
}