[NTUSER] Improve NtUserQueryWindow (#3915)

- Improve NtUserQueryWindow function.
- Add IMC structure.
- Modify THREADINFO structure.
CORE-11700
This commit is contained in:
Katayama Hirofumi MZ 2021-08-21 07:31:10 +09:00 committed by GitHub
parent d78e9fbb45
commit 10c9aa067f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 37 additions and 8 deletions

View file

@ -187,6 +187,14 @@ typedef struct _THRDESKHEAD
PVOID pSelf;
} THRDESKHEAD, *PTHRDESKHEAD;
typedef struct tagIMC
{
THRDESKHEAD head;
struct tagIMC *pImcNext;
ULONG_PTR dwClientImcData;
HWND hImeWnd;
} IMC, *PIMC;
typedef struct _PROCDESKHEAD
{
HEAD;