UNPKG

win32-def

Version:
31 lines 1.06 kB
import type * as T from '../../../lib/common.types.js'; import type { StructFactoryResult, StructInitType } from '../../../lib/types.js'; declare const init: StructInitType; export declare const LPWNDCLASSEXW: "WNDCLASSEXW*"; export declare const WNDCLASSEXW_Name = "WNDCLASSEXW"; export declare const WNDCLASSEXW_Init: typeof init; /** * WNDCLASSEXW structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-wndclassexw */ export declare function WNDCLASSEXW_Factory(): StructFactoryResult<WNDCLASSEXW_Type>; /** * WNDCLASSEXW structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-wndclassexw */ export interface WNDCLASSEXW_Type { cbSize: T.UINT; style: T.UINT; lpfnWndProc: T.WNDPROC; cbClsExtra: T.INT; cbWndExtra: T.INT; hInstance: T.HINSTANCE; hIcon: T.HICON; hCursor: T.HCURSOR; hbrBackground: T.HBRUSH; lpszMenuName: T.WCHAR_String; lpszClassName: T.WCHAR_String; hIconSm: T.HICON; } export {}; //# sourceMappingURL=WNDCLASSEXW.d.ts.map