diff options
author | midipix <writeonce@midipix.org> | 2016-06-30 16:52:28 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-06-30 16:52:28 -0400 |
commit | cc0351a872968560f0bc151b4c3044f447cb71ab (patch) | |
tree | c1f7ca6b955ffabad7079f6ef482123d2d080ea2 /include | |
parent | 208f4349371bcaa8f3ec47374ccaba11744266df (diff) | |
download | ntapi-cc0351a872968560f0bc151b4c3044f447cb71ab.tar.bz2 ntapi-cc0351a872968560f0bc151b4c3044f447cb71ab.tar.xz |
struct _nt_runtime_data: enhance support for free-standing native utilities.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_process.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h index 61afdb5..e29d140 100644 --- a/include/ntapi/nt_process.h +++ b/include/ntapi/nt_process.h @@ -448,6 +448,7 @@ typedef struct _nt_runtime_data { void * hstderr; void * hjob; void * hsession; + void * hpty; void * hdebug; void * hlog; void * hready; @@ -488,6 +489,7 @@ typedef struct _nt_runtime_data { int32_t peb_argc; wchar16_t ** peb_wargv; wchar16_t ** peb_wenvp; + uintptr_t ptyany[4]; void * uptr [NT_RUNTIME_DATA_USER_PTRS]; void * uclose[NT_RUNTIME_DATA_USER_PTRS]; int32_t udat32[NT_RUNTIME_DATA_USER_INT32_SLOTS]; |