mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 07:17:56 +08:00
14 lines
207 B
C
14 lines
207 B
C
|
#pragma once
|
||
|
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <windows.h>
|
||
|
|
||
|
struct WinHookEvent
|
||
|
{
|
||
|
DWORD event;
|
||
|
HWND hwnd;
|
||
|
LONG idObject;
|
||
|
LONG idChild;
|
||
|
DWORD idEventThread;
|
||
|
DWORD dwmsEventTime;
|
||
|
};
|