terminal/src/cascadia/TerminalApp/TextBlockControlHost.idl
Mike Griese dd212dde74 Enable embedding non-terminal controls in panes
This adds a _super_ simple dummy RichTextBox as a control in a pane adjacent to a terminal pane
2019-07-18 10:36:49 -05:00

18 lines
511 B
Plaintext

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Even though this is in the same directory, we're building from a child
// directory, so the midl compiler gets confused. TODO: This shouldn't need the
// "../". Maybe there's a build rule we can add (gross) or we can just live with
// it.
import "../IControlHost.idl";
namespace TerminalApp
{
[default_interface] runtimeclass TextBlockControlHost : IControlHost
{
TextBlockControlHost();
};
}