UNPKG

win32-def

Version:
21 lines 570 B
import * as D from '../../../lib/common.def.js'; import { genStruct } from '../struct.helper.js'; const key = 'RAWHID'; const ptr = `${key}*`; const init = { dwSizeHid: D.DWORD, dwCount: D.DWORD, /** bRawData[1] */ bRawData: D.BYTE, }; export const LPRAWHID = ptr; export const RAWHID_Name = key; export const RAWHID_Init = init; /** * RAWHID structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-rawhid */ export function RAWHID_Factory() { return genStruct(init, key, ptr); } //# sourceMappingURL=RAWHID.js.map