https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d83be2e6b67d42855d9d4…
commit d83be2e6b67d42855d9d431f3cc3f1d482cacc08
Author: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
AuthorDate: Wed Aug 18 19:56:47 2021 +0900
Commit: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
CommitDate: Wed Aug 18 19:56:47 2021 +0900
[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;