diff options
author | midipix <writeonce@midipix.org> | 2019-05-27 21:26:44 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-05-28 00:00:09 +0000 |
commit | c95ea049e306f41476ba040f8d89e953d60bac30 (patch) | |
tree | 982fb5bfce71fcad4451e97c86a883d1cca988ab | |
parent | 8918bdff4b58bc7d1b8cd8c66201ce29c3113bd1 (diff) | |
download | ntapi-c95ea049e306f41476ba040f8d89e953d60bac30.tar.bz2 ntapi-c95ea049e306f41476ba040f8d89e953d60bac30.tar.xz |
process creation: spawn: added debug-related definitions.
-rw-r--r-- | include/ntapi/nt_process.h | 3 |
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; |