summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-05-27 21:26:44 +0000
committermidipix <writeonce@midipix.org>2019-05-28 00:00:09 +0000
commitc95ea049e306f41476ba040f8d89e953d60bac30 (patch)
tree982fb5bfce71fcad4451e97c86a883d1cca988ab /include
parent8918bdff4b58bc7d1b8cd8c66201ce29c3113bd1 (diff)
downloadntapi-c95ea049e306f41476ba040f8d89e953d60bac30.tar.bz2
ntapi-c95ea049e306f41476ba040f8d89e953d60bac30.tar.xz
process creation: spawn: added debug-related definitions.
Diffstat (limited to 'include')
-rw-r--r--include/ntapi/nt_process.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h
index 69d7012..58e0445 100644
--- a/include/ntapi/nt_process.h
+++ b/include/ntapi/nt_process.h
@@ -225,6 +225,8 @@ typedef enum _nt_process_opcode_idx {
#define NT_PROCESS_SPAWN_FLAG_DELEGATE_TO_SYSTEM_LIBRARY (0x00000001)
#define NT_PROCESS_SPAWN_FLAG_DELEGATE_TO_PTY_SERVER (0x00000002)
#define NT_PROCESS_SPAWN_FLAG_DELEGATE_TO_BRIDGE_PROCESS (0x00000004)
+#define NT_PROCESS_SPAWN_FLAG_DEBUG_EXECUTION (0x00000010)
+#define NT_PROCESS_SPAWN_FLAG_DEBUG_SUSPENDED (0x00000020)
/* nt_runtime_data_block flag bits */
#define NT_RUNTIME_DATA_DUPLICATE_SESSION_HANDLES (0x01)
@@ -735,6 +737,7 @@ typedef struct _nt_create_process_params {
typedef struct _nt_spawn_process_params {
__out void * hprocess;
__out void * hthread;
+ __out void * hdbgobj;
__out void * rdata;
__out nt_client_id cid;
__out nt_process_basic_information pbi;