[NTUSER][INCLUDE] Trivial formatting of TRANSMSG and TRANSMSGLIST

CORE-11700
This commit is contained in:
Katayama Hirofumi MZ 2021-08-18 19:56:47 +09:00
parent 9a8049cb39
commit d83be2e6b6

View file

@ -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;