[PATCH v4] user32: Implement GetMouseMovePointsEx().

Alexandre Julliard julliard at winehq.org
Tue Sep 29 05:17:12 CDT 2020


Rémi Bernon <rbernon at codeweavers.com> writes:

> +typedef struct
> +{
> +    unsigned int newest;
> +    int __pad;
> +    cursor_pos_t positions[64];
> +} cursor_history_t;

I expect it would be cleaner without this structure, simply returning an
array of points.

> @@ -227,6 +227,8 @@ static const struct object_ops thread_input_ops =
>  /* pointer to input structure of foreground thread */
>  static unsigned int last_input_time;
>  
> +static cursor_history_t cursor_history;

This most likely needs to be per-desktop.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list