added moethod stub for HttpPrepareUrl in dlls/httpapi/httpapi_main.c

Bruno Jesus 00cpxxx at gmail.com
Sun Nov 20 04:11:55 CST 2011


You have to use your full name (as advised before).
See http://wiki.winehq.org/SubmittingPatches for more information.

Also, gmail is breaking your patch, attach the patch file instead of
pasting it to the email body.

Best wishes,
Bruno

On Sat, Nov 19, 2011 at 09:24, ArasH <arash.cordi at gmail.com> wrote:
> ---
>  dlls/httpapi/httpapi_main.c |   21 +++++++++++++++++++++
>  1 files changed, 21 insertions(+), 0 deletions(-)
>
> diff --git a/dlls/httpapi/httpapi_main.c b/dlls/httpapi/httpapi_main.c
> index 3375cb6..c5c8cda 100644
> --- a/dlls/httpapi/httpapi_main.c
> +++ b/dlls/httpapi/httpapi_main.c
> @@ -85,6 +85,27 @@ ULONG WINAPI HttpTerminate( ULONG flags, PVOID reserved )
>  }
>
>  /***********************************************************************
> + *        HttpPrepareUrl      (HTTPAPI.@)
> + * parses, analyzes, and normalizes a non-normalized Unicode or punycode URL
> + * so it is safe and valid to use in other HTTP functions.
> + *
> + *  PARAMS
> + *    reserved     [IO] reserved, must be NULL
> + *    flags        [ I] reserved. must be zero
> + *    url          [ I] a pointer to a string that represents the
> non-normalized URL
> + *    prepared_url [ O] on success, a pointer to a string
> representing the normalized URL.
> + *
> + * RETURNS
> + *   ERROR_SUCCESS if function succeeds, or error code if function fails
> + *
> + */
> +ULONG WINAPI HttpPrepareUrl( PVOID reserved, ULONG flags, PCWSTR url,
> PWSTR *prepared_url)
> +{
> +    FIXME( "(%p, 0x%x, %p): stub!\n", reserved, flags, url );
> +    return ERROR_SUCCESS;
> +}
> +
> +/***********************************************************************
>  *        HttpDeleteServiceConfiguration     (HTTPAPI.@)
>  *
>  * Remove configuration record from HTTP Server API configuration store
> --
> 1.6.2.2
>
>
>



More information about the wine-devel mailing list