From c95ea049e306f41476ba040f8d89e953d60bac30 Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 27 May 2019 21:26:44 +0000 Subject: process creation: spawn: added debug-related definitions. --- include/ntapi/nt_process.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') 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; -- cgit v1.2.3