From 8a833406614b503dcd647015d3cfd239faf5cb0c Mon Sep 17 00:00:00 2001 From: sterlingjensen <5555776+sterlingjensen@users.noreply.github.com> Date: Sat, 14 Dec 2019 23:21:54 -0600 Subject: Add conpty dynamic loading restrictions docs --- alacritty_terminal/src/tty/windows/conpty.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'alacritty_terminal/src') diff --git a/alacritty_terminal/src/tty/windows/conpty.rs b/alacritty_terminal/src/tty/windows/conpty.rs index d01f67b6..5e5a0118 100644 --- a/alacritty_terminal/src/tty/windows/conpty.rs +++ b/alacritty_terminal/src/tty/windows/conpty.rs @@ -40,6 +40,10 @@ use crate::term::SizeInfo; use crate::tty::windows::child::ChildExitWatcher; use crate::tty::windows::Pty; +// TODO: Replace with winapi's implementation. This cannot be +// done until a safety net is in place for versions of Windows +// that do not support the ConPTY api, as such versions will +// pass unit testing - but fail to actually function. /// Dynamically-loaded Pseudoconsole API from kernel32.dll /// /// The field names are deliberately PascalCase as this matches -- cgit