UNPKG

win32-def

Version:
22 lines 667 B
import * as D from '../../../lib/common.def.js'; import { genStruct } from '../struct.helper.js'; const key = 'PRINTER_INFO_1'; const ptr = `${key}*`; const init = { Flags: D.DWORD, pDescription: D.WString, pName: D.WString, pComment: D.WString, }; export const PPRINTER_INFO_1 = ptr; export const PRINTER_INFO_1_Name = key; export const PRINTER_INFO_1_Init = init; /** * PRINTER_INFO_1 structure, * Specifies general printer information * @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-1 */ export function PRINTER_INFO_1_Factory() { return genStruct(init, key, ptr); } //# sourceMappingURL=PRINTER_INFO_1.js.map