UNPKG

win32-def

Version:
23 lines 811 B
import type * as T from '../../../lib/common.types.js'; import type { StructFactoryResult, StructInitType } from '../../../lib/types.js'; declare const init: StructInitType; export declare const LPRAWINPUT: "RAWINPUT*"; export declare const RAWINPUT_Name = "RAWINPUT"; export declare const RAWINPUT_Init: typeof init; /** * RAWINPUT structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-rawinput */ export declare function RAWINPUT_Factory(): StructFactoryResult<RAWINPUT_Type>; /** * RAWINPUT structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-rawinput */ export interface RAWINPUT_Type { dwSizeHid: T.DWORD; dwCount: T.DWORD; /** bRawData[1] */ bRawData: T.BYTE; } export {}; //# sourceMappingURL=RAWINPUT.d.ts.map