win32-def
Version:
win32 definitions for node-ffi
19 lines • 499 B
JavaScript
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