From d83be2e6b67d42855d9d431f3cc3f1d482cacc08 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Wed, 18 Aug 2021 19:56:47 +0900 Subject: [PATCH] [NTUSER][INCLUDE] Trivial formatting of TRANSMSG and TRANSMSGLIST CORE-11700 --- win32ss/include/ntuser.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/win32ss/include/ntuser.h b/win32ss/include/ntuser.h index 782af6d0df4..56a55ca8fa3 100644 --- a/win32ss/include/ntuser.h +++ b/win32ss/include/ntuser.h @@ -1211,13 +1211,15 @@ typedef struct _IMEWND PIMEUI pimeui; } IMEWND, *PIMEWND; -typedef struct tagTRANSMSG { +typedef struct tagTRANSMSG +{ UINT message; WPARAM wParam; LPARAM lParam; } TRANSMSG, *PTRANSMSG, *LPTRANSMSG; -typedef struct tagTRANSMSGLIST { +typedef struct tagTRANSMSGLIST +{ UINT uMsgCount; TRANSMSG TransMsg[1]; } TRANSMSGLIST, *PTRANSMSGLIST, *LPTRANSMSGLIST;