summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_process.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-08-21 07:53:10 -0400
committermidipix <writeonce@midipix.org>2016-08-22 08:59:52 -0400
commit5ea20e26018754a34c7f535ec6d6d8ba5d190583 (patch)
treefaafd14817b63b442e581dbd52395236756028c4 /include/ntapi/nt_process.h
parent5d0788a673cce9069a216768c03aa606d417389d (diff)
downloadntapi-5ea20e26018754a34c7f535ec6d6d8ba5d190583.tar.bz2
ntapi-5ea20e26018754a34c7f535ec6d6d8ba5d190583.tar.xz
pty layer: __ntapi_pty_inherit_runtime_ctty(): implementation and integration.
Diffstat (limited to 'include/ntapi/nt_process.h')
-rw-r--r--include/ntapi/nt_process.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h
index a1ef3a2..e03dec0 100644
--- a/include/ntapi/nt_process.h
+++ b/include/ntapi/nt_process.h
@@ -451,9 +451,9 @@ typedef struct _nt_runtime_data {
void * hstdin;
void * hstdout;
void * hstderr;
+ void * hctty;
void * hjob;
void * hsession;
- void * hpty;
void * hdebug;
void * hlog;
void * hready;
@@ -498,7 +498,10 @@ typedef struct _nt_runtime_data {
int32_t peb_argc;
wchar16_t ** peb_wargv;
wchar16_t ** peb_wenvp;
- uintptr_t ptyany[4];
+ uintptr_t ptyin [4];
+ uintptr_t ptyout[4];
+ uintptr_t ptyerr[4];
+ uintptr_t ptyctl[4];
uint32_t sa_queue [2];
uint32_t sa_block [2];
void * sa_handler[64];