From 3a5292eba7c99c0ae75d268d4ec35bf1a8b44f45 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 13 Sep 2018 16:17:06 +0200 Subject: [PATCH] server: Remove unnecessary structure names. Signed-off-by: Alexandre Julliard --- include/wine/server_protocol.h | 10 +++++----- server/protocol.def | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/include/wine/server_protocol.h b/include/wine/server_protocol.h index 52c6d1f69ac..0b61b915f0b 100644 --- a/include/wine/server_protocol.h +++ b/include/wine/server_protocol.h @@ -1776,27 +1776,27 @@ struct console_renderer_event short event; union { - struct update + struct { short top; short bottom; } update; - struct resize + struct { short width; short height; } resize; - struct cursor_pos + struct { short x; short y; } cursor_pos; - struct cursor_geom + struct { short visible; short size; } cursor_geom; - struct display + struct { short left; short top; diff --git a/server/protocol.def b/server/protocol.def index 936eb36af44..8bff5d8d482 100644 --- a/server/protocol.def +++ b/server/protocol.def @@ -1413,27 +1413,27 @@ struct console_renderer_event short event; union { - struct update + struct { short top; short bottom; } update; - struct resize + struct { short width; short height; } resize; - struct cursor_pos + struct { short x; short y; } cursor_pos; - struct cursor_geom + struct { short visible; short size; } cursor_geom; - struct display + struct { short left; short top;