[PATCH] ntdll: Add stubs for WinSqmStartSession / WinSqmEndSession

André Hentschel nerv at dawncrow.de
Sat Jul 7 08:03:04 CDT 2012


Am 07.07.2012 01:08, schrieb Detlef Riekenberg:
> It was to simple for a stub.
> I added more parameter, until the 32-Bit app stopped crashing.
> 
> --
> By by ... Detlef
> ---
>  dlls/ntdll/rtl.c |   18 ++++++++++++++++++
>  1 files changed, 18 insertions(+), 0 deletions(-)
> 
> diff --git a/dlls/ntdll/rtl.c b/dlls/ntdll/rtl.c
> index 34869e7..ec35a23 100644
> --- a/dlls/ntdll/rtl.c
> +++ b/dlls/ntdll/rtl.c
> @@ -1310,3 +1310,21 @@ BOOL WINAPI RtlSetCurrentTransaction(HANDLE new_transaction)
>      FIXME("(%p) :stub\n", new_transaction);
>      return FALSE;
>  }
> +
> +/******************************************************************************
> + * WinSqmEndSession [NTDLL.@]
> + */
> +NTSTATUS WINAPI WinSqmEndSession(void *unknown1)
> +{
> +    FIXME("(%p) :stub\n", unknown1);
> +    return STATUS_NOT_IMPLEMENTED;
> +}
> +
> +/******************************************************************************
> + * WinSqmStartSession [NTDLL.@]
> + */
> +NTSTATUS WINAPI WinSqmStartSession(void *unknown1, void *unknown2, void *unknown3)
> +{
> +    FIXME("(%p, %p, %p) :stub\n", unknown1, unknown2, unknown3);
> +    return STATUS_NOT_IMPLEMENTED;
> +}
> 

You forgot the spec update.

-- 

Best Regards, André Hentschel





More information about the wine-devel mailing list