ntdll: add RtlCreateUserProcess stub (try 3)

Sebastian Lackner sebastian at fds-team.de
Fri Jan 8 02:52:17 CST 2016


On 08.01.2016 05:41, Austin English wrote:
> -- -Austin
> 
> 
> 0001-ntdll-add-RtlCreateUserProcess-stub-try-3.patch
> 
> 
> From ca62eb0646b0f16a8642056d2e458845861cbd8f Mon Sep 17 00:00:00 2001
> From: Austin English <austinenglish at gmail.com>
> Date: Tue, 15 Dec 2015 01:51:05 -0600
> Subject: [PATCH] ntdll: add RtlCreateUserProcess stub (try 3)
> 
> Signed-off-by: Austin English <austinenglish at gmail.com>
> ---
>  dlls/ntdll/ntdll.spec |  2 +-
>  dlls/ntdll/rtl.c      | 13 +++++++++++++
>  include/winternl.h    | 10 ++++++++++
>  3 files changed, 24 insertions(+), 1 deletion(-)
> 

[...]

> +    FIXME("(%p %u %p %p %p %p %d %p %p %p): stub\n", path, attributes, parameters, process_descriptor, thread_descriptor,
> +                                     parent, inherit, debug, exception, info);
> +    return STATUS_NOT_IMPLEMENTED;
> +}

The indentation looks a bit weird here, but probably not worth a resend.

As Austin pointed out, there are different versions of the RTL_USER_PROCESS_INFORMATION
struct out there, which makes it very unlikely that an app expects a specific one.

Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>




More information about the wine-patches mailing list