diff options
author | midipix <writeonce@midipix.org> | 2018-06-16 22:25:29 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-06-16 18:35:55 -0400 |
commit | e62c29643298bda31ab5f1111eed11862f7324bc (patch) | |
tree | f44dc14f94ae390cc6df2b0f8e0a195f754ff21e /include | |
parent | c4fe1edd2cc367994ea57a0ab8f3e870db9e6bec (diff) | |
download | ntapi-e62c29643298bda31ab5f1111eed11862f7324bc.tar.bz2 ntapi-e62c29643298bda31ab5f1111eed11862f7324bc.tar.xz |
pty query: client-side interfaces: revised and extended for api consistency.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_tty.h | 9 | ||||
-rw-r--r-- | include/ntapi/ntapi.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/ntapi/nt_tty.h b/include/ntapi/nt_tty.h index 07797d4..2b3aa39 100644 --- a/include/ntapi/nt_tty.h +++ b/include/ntapi/nt_tty.h @@ -712,6 +712,15 @@ typedef int32_t __stdcall ntapi_pty_query( __in nt_pty_info_class pty_info_class); +typedef int32_t __stdcall ntapi_pty_xquery( + __in void * hport, + __out nt_io_status_block * iosb, + __out void * pty_info, + __in uint32_t pty_info_length, + __in nt_pty_info_class pty_info_class, + __in nt_pty_client_info * pty_client_info); + + typedef int32_t __stdcall ntapi_pty_set( __in nt_pty * hfile, __out nt_io_status_block * iosb, diff --git a/include/ntapi/ntapi.h b/include/ntapi/ntapi.h index a78d8f1..7714bce 100644 --- a/include/ntapi/ntapi.h +++ b/include/ntapi/ntapi.h @@ -611,6 +611,7 @@ typedef struct _ntapi_vtbl { ntapi_pty_fcntl * pty_fcntl; ntapi_pty_ioctl * pty_ioctl; ntapi_pty_query * pty_query; + ntapi_pty_xquery * pty_xquery; ntapi_pty_set * pty_set; ntapi_pty_cancel * pty_cancel; |