diff options
author | midipix <writeonce@midipix.org> | 2018-06-18 09:16:52 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-18 19:12:58 -0400 |
commit | 57636446c36f9f7ae3121dee57731429e49a1a06 (patch) | |
tree | 915f7d6da01090521a15bf92144d8bcd9267938e /include | |
parent | f2a7d3374eb54d654633aa11178b8883d09d41fd (diff) | |
download | ntapi-57636446c36f9f7ae3121dee57731429e49a1a06.tar.bz2 ntapi-57636446c36f9f7ae3121dee57731429e49a1a06.tar.xz |
pty client interfaces: pty_xquery(): added NT_PTY_CONTEXT_INFORMATION support.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_tty.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/ntapi/nt_tty.h b/include/ntapi/nt_tty.h index b574ce2..38a176d 100644 --- a/include/ntapi/nt_tty.h +++ b/include/ntapi/nt_tty.h @@ -274,6 +274,14 @@ typedef struct __attr_ptr_size_aligned__ _nt_pty_fd_info { } nt_pty_fd_info; +typedef struct __attr_ptr_size_aligned__ _nt_pty_context_info { + void * hpty; + nt_guid guid; + nt_luid luid; + uintptr_t ctxarg[4]; +} nt_pty_context_info; + + typedef struct __attr_ptr_size_aligned__ _nt_pty_io_info { void * hpty; void * hevent; |