diff options
author | midipix <writeonce@midipix.org> | 2022-12-20 22:48:43 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2022-12-21 01:03:29 +0000 |
commit | a823bc7bd268975d035582e84d3d96149c9f231e (patch) | |
tree | c19eec97ccb36004888fd3be3ca3961ca81f0bbe /include | |
parent | 1717a8ab178466bb73fd4c0a7fba1402df9deef0 (diff) | |
download | ntapi-a823bc7bd268975d035582e84d3d96149c9f231e.tar.bz2 ntapi-a823bc7bd268975d035582e84d3d96149c9f231e.tar.xz |
__ntapi_tt_fork(): changed signature: record cid, return native status code.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_process.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h index ccc2e14..d42ac4b 100644 --- a/include/ntapi/nt_process.h +++ b/include/ntapi/nt_process.h @@ -880,9 +880,10 @@ typedef int32_t __stdcall ntapi_rtl_clone_user_process( /* extensions */ -typedef intptr_t __fastcall ntapi_tt_fork( +typedef int32_t __fastcall ntapi_tt_fork( __out void ** hprocess, - __out void ** hthread); + __out void ** hthread, + __out nt_cid * cid); typedef int32_t __stdcall ntapi_tt_create_remote_process_params( |