win32-def
Version:
win32 definitions for node-ffi
12 lines (9 loc) • 307 B
text/typescript
/**
* Used by SendInput to store information for synthesizing input events such as keystrokes, mouse movement, and mouse clicks.
* @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-input
*/
export enum INPUT {
INPUT_MOUSE = 0,
INPUT_KEYBOARD = 1,
INPUT_HARDWARE = 2,
}