win32-def
Version:
win32 definitions for node-ffi
20 lines • 601 B
JavaScript
import * as D from '../../../lib/common.def.js';
import { genStruct } from '../struct.helper.js';
const key = 'HARDWAREINPUT';
const ptr = `${key}*`;
const init = {
uMsg: D.UINT32,
wParamL: D.UINT16,
wParamH: D.UINT16,
};
export const LPHARDWAREINPUT = ptr;
export const HARDWAREINPUT_Name = key;
export const HARDWAREINPUT_Init = init;
/**
* HARDWAREINPUT structure
* @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-hardwareinput
*/
export function HARDWAREINPUT_Factory() {
return genStruct(init, key, ptr);
}
//# sourceMappingURL=HARDWAREINPUT.js.map