diff options
author | midipix <writeonce@midipix.org> | 2017-01-18 01:47:03 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-01-17 21:58:32 -0500 |
commit | dea1aa7dfbb473a5625491efb65ef088b68d7092 (patch) | |
tree | 64c901745b88d224feaa57d4fedde20b873f333d /include | |
parent | d16b427bc946660da1b5a4421aacb585dd0a07ad (diff) | |
download | ntapi-dea1aa7dfbb473a5625491efb65ef088b68d7092.tar.bz2 ntapi-dea1aa7dfbb473a5625491efb65ef088b68d7092.tar.xz |
struct nt_runtime_data: update for the benefit of the framework loader impl.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_process.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h index 9b0b81b..8088e19 100644 --- a/include/ntapi/nt_process.h +++ b/include/ntapi/nt_process.h @@ -448,18 +448,18 @@ typedef struct _nt_process_alternate_client_id { } nt_process_alternate_client_id, nt_alt_cid; typedef struct _nt_runtime_data { - void * hprocess_self; - void * hprocess_parent; + void * hself; + void * hparent; + void * himage; + void * hroot; + void * hcwd; + void * hdrive; nt_cid cid_self; nt_cid cid_parent; nt_alt_cid alt_cid_self; nt_alt_cid alt_cid_parent; uint32_t flags; uint32_t reserved; - void * himage; - void * hroot; - void * hcwd; - void * hdrive; void * hstdin; void * hstdout; void * hstderr; |