UNPKG

win32-def

Version:
30 lines 1.06 kB
import type * as T from '../../../lib/common.types.js'; import type { StructFactoryResult, StructInitType } from '../../../lib/types.js'; import type { RECT_Type } from '../windef/RECT.js'; declare const init: StructInitType; export declare const LPWINDOWINFO: "WINDOWINFO*"; export declare const WINDOWINFO_Name = "WINDOWINFO"; export declare const WINDOWINFO_Init: typeof init; /** * WINDOWINFO structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-WINDOWINFO */ export declare function WINDOWINFO_Factory(): StructFactoryResult<WINDOWINFO_Type>; /** * WINDOWINFO structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-WINDOWINFO */ export interface WINDOWINFO_Type { cbSize: T.DWORD; rcWindow: RECT_Type; rcClient: RECT_Type; dwStyle: T.DWORD; dwExStyle: T.DWORD; dwWindowStatus: T.DWORD; cxWindowBorders: T.UINT; cyWindowBorders: T.UINT; atomWindowType: T.ATOM; wCreatorVersion: T.WORD; } export {}; //# sourceMappingURL=WINDOWINFO.d.ts.map