summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-01-19 04:50:09 +0000
committermidipix <writeonce@midipix.org>2017-01-19 00:44:33 -0500
commit804edfafcbd5066873a1d6a77b6e6bacba783c14 (patch)
treee48eaaa320b2354113656d0deae9ce6fba32752d /include
parent365987ac7436574fe47040cd67602b71112d76ce (diff)
downloadntapi-804edfafcbd5066873a1d6a77b6e6bacba783c14.tar.bz2
ntapi-804edfafcbd5066873a1d6a77b6e6bacba783c14.tar.xz
__ntapi_tt_get_runtime_data(): integral process: guard against false positives.
Diffstat (limited to 'include')
-rw-r--r--include/ntapi/nt_process.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h
index 6f991f6..af22d02 100644
--- a/include/ntapi/nt_process.h
+++ b/include/ntapi/nt_process.h
@@ -195,6 +195,10 @@ typedef enum _nt_process_opcode_idx {
#define NT_RUNTIME_DATA_USER_INT32_SLOTS (0x10)
#define NT_RUNTIME_DATA_USER_INT64_SLOTS (0x10)
+/* friendly process abi guid */
+#define NT_PROCESS_GUID_UNSPEC {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
+#define NT_PROCESS_GUID_RTDATA {0x3e43ec84,0x1af1,0x4ede,{0xac,0xd8,0xc3,0xd9,0x20,0xaf,0xc8,0x68}}
+
/* friendly process guids */
#define NT_PROCESS_GUID_NTPGRP {0xfa383cc0,0xa25b,0x4448,{0x83,0x45,0x51,0x45,0x4d,0xa8,0x2f,0x30}}
#define NT_PROCESS_GUID_PIDMAP {0xba054c90,0x8b4f,0x4989,{0xa0,0x52,0x32,0xce,0x41,0x9e,0xbf,0x97}}
@@ -454,7 +458,7 @@ typedef struct _nt_runtime_data {
void * hroot;
void * hcwd;
void * hdrive;
- nt_guid ldso;
+ nt_guid abi;
nt_cid cid_self;
nt_cid cid_parent;
nt_alt_cid alt_cid_self;