UNPKG

win32-def

Version:
41 lines (34 loc) 1.19 kB
import * as D from '##/lib/common.def.js' import type * as T from '##/lib/common.types.js' import type { StructFactoryResult, StructInitType } from '##/lib/types.js' import { genStruct } from '../struct.helper.js' const key = 'RID_DEVICE_INFO_HID' const ptr = `${key}*` as const const init: StructInitType = { dwVendorId: D.DWORD, dwProductId: D.DWORD, dwVersionNumber: D.DWORD, usUsagePage: D.USHORT, usUsage: D.USHORT, } as const export const PRID_DEVICE_INFO_HID = ptr export const RID_DEVICE_INFO_HID_Name = key export const RID_DEVICE_INFO_HID_Init: typeof init = init /** * RID_DEVICE_INFO_HID structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-RID_DEVICE_INFO_HID */ export function RID_DEVICE_INFO_HID_Factory(): StructFactoryResult<RID_DEVICE_INFO_HID_Type> { return genStruct<RID_DEVICE_INFO_HID_Type>(init, key, ptr) } /** * RID_DEVICE_INFO_HID structure * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-RID_DEVICE_INFO_HID */ export interface RID_DEVICE_INFO_HID_Type { dwVendorId: T.DWORD dwProductId: T.DWORD dwVersionNumber: T.DWORD usUsagePage: T.USHORT usUsage: T.USHORT }