Henri Verbeet hverbeet@codeweavers.com writes:
dlls/kernel32/debugger.c | 15 ++++++++++-- dlls/kernel32/tests/debugger.c | 44 ++++++++++++++++++++++++++++++++++++++- server/debugger.c | 12 ++++++++++ server/protocol.def | 8 +++++++ 4 files changed, 74 insertions(+), 5 deletions(-)
You can add that to an existing request like get_process_info. We don't want a separate request for each bit of process information. The kernel side should probably be based on NtQueryProcessInformation anyway.
On 5 March 2010 13:21, Alexandre Julliard julliard@winehq.org wrote:
You can add that to an existing request like get_process_info. We don't want a separate request for each bit of process information. The kernel side should probably be based on NtQueryProcessInformation anyway.
There's ProcessDebugObjectHandle, but it's not clear to me what kind of handle that actually returns. It's not a process handle at least.
Henri Verbeet a écrit :
On 5 March 2010 13:21, Alexandre Julliard julliard@winehq.org wrote:
You can add that to an existing request like get_process_info. We don't want a separate request for each bit of process information. The kernel side should probably be based on NtQueryProcessInformation anyway.
There's ProcessDebugObjectHandle, but it's not clear to me what kind of handle that actually returns. It's not a process handle at least.
ProcessDebugPort would be preferred (any non zero value would do) A+