UNPKG

win32-def

Version:
19 lines 499 B
import * as D from '../../../lib/common.def.js'; import { genStruct } from '../struct.helper.js'; const key = 'POINT'; const ptr = `${key}*`; const init = { x: D.LONG, y: D.LONG, }; export const LPPOINT = ptr; export const POINT_Name = key; export const POINT_Init = init; /** * POINT structure * @link https://learn.microsoft.com/en-us/windows/win32/api/windef/ns-windef-point */ export function POINT_Factory() { return genStruct(init, key, ptr); } //# sourceMappingURL=POINT.js.map