29 Sep
2020
29 Sep
'20
10:17 a.m.
Rémi Bernon <rbernon(a)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(a)winehq.org