user32: Fix the edit class extra byte count on non-x86 platforms (try 2)

Alexandre Julliard julliard at winehq.org
Thu Oct 4 03:40:21 CDT 2012


André Hentschel <nerv at dawncrow.de> writes:

> @@ -5173,10 +5173,10 @@ const struct builtin_class_descr EDIT_builtin_class =
>      editW,                /* name */
>      CS_DBLCLKS | CS_PARENTDC,   /* style */
>      WINPROC_EDIT,         /* proc */
> -#ifdef __i386__
> -    sizeof(EDITSTATE *) + sizeof(WORD), /* extra */
> -#else
> +#ifdef _WIN64
>      sizeof(EDITSTATE *),  /* extra */
> +#else
> +    sizeof(EDITSTATE *) + sizeof(WORD), /* extra */
>  #endif

Why do you need that?

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list