diff options
author | midipix <writeonce@midipix.org> | 2018-01-26 21:33:11 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-01-26 21:33:11 -0500 |
commit | 29b2c1ac5e3c1b8ba1e54084a7e687abd5f8114d (patch) | |
tree | eafdad8092797570a4ecccc5a0d7df28a9c89582 /include | |
parent | c8a12604d8e4531ac8e2bf7759ea369d6ab54d69 (diff) | |
download | ntapi-29b2c1ac5e3c1b8ba1e54084a7e687abd5f8114d.tar.bz2 ntapi-29b2c1ac5e3c1b8ba1e54084a7e687abd5f8114d.tar.xz |
struct _nt_spawn_process_params: foreign process creation: support passing cwd.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_process.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h index ddb3753..7a649ad 100644 --- a/include/ntapi/nt_process.h +++ b/include/ntapi/nt_process.h @@ -692,8 +692,9 @@ typedef struct _nt_spawn_process_params { __out nt_process_basic_information pbi; __out nt_event_basic_information eready; __in nt_runtime_data * rtctx; - __in void * hroot; + __in wchar16_t * cwd; __in void * hcwd; + __in void * hroot; __in void * hsession; __in void * htoken; __in void * himage; |