summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_process.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-08-10 04:30:27 -0400
committermidipix <writeonce@midipix.org>2016-08-10 21:44:17 -0400
commit7ddcea31a85ae820912566380d8b80c9aad6b93b (patch)
tree2f53a2639ed5f995af10f5751d87a9a306ecad7a /include/ntapi/nt_process.h
parentfff2afe2aee281a70dce4d9c536de14ed2277bae (diff)
downloadntapi-7ddcea31a85ae820912566380d8b80c9aad6b93b.tar.bz2
ntapi-7ddcea31a85ae820912566380d8b80c9aad6b93b.tar.xz
runtime data: added flags and NT_RUNTIME_DATA_INTEGRAL_PROCESS support.
Diffstat (limited to 'include/ntapi/nt_process.h')
-rw-r--r--include/ntapi/nt_process.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h
index 5430b46..2aef7ee 100644
--- a/include/ntapi/nt_process.h
+++ b/include/ntapi/nt_process.h
@@ -175,6 +175,9 @@ typedef enum _nt_process_create_info_class {
/* nt_runtime_data_block flag bits */
#define NT_RUNTIME_DATA_DUPLICATE_SESSION_HANDLES (0x01)
+/* nt_runtime_data flag bits */
+#define NT_RUNTIME_DATA_INTEGRAL_PROCESS (0x01)
+
/* runtime data convenience storage */
#define NT_RUNTIME_DATA_USER_PTRS (0x10)
#define NT_RUNTIME_DATA_USER_INT32_SLOTS (0x10)
@@ -439,6 +442,8 @@ typedef struct _nt_runtime_data {
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;