mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02: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;
|
||
|
|
};
|