UNPKG

win32-def

Version:
27 lines 854 B
import type * as T from '../../../lib/common.types.js'; import type { StructFactoryResult, StructInitType } from '../../../lib/types.js'; import type { POINT_Type } from '../windef/POINT.js'; declare const init: StructInitType; export declare const LPMSG: "MSG*"; export declare const MSG_Name = "MSG"; export declare const MSG_Init: typeof init; /** * MSG structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-msg */ export declare function MSG_Factory(): StructFactoryResult<MSG_Type>; /** * MSG structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-msg */ export interface MSG_Type { hwnd: T.HWND; message: T.UINT; wParam: T.WPARAM; lParam: T.LPARAM; time: T.DWORD; pt: POINT_Type; lPrivate: T.DWORD; } export {}; //# sourceMappingURL=MSG.d.ts.map