UNPKG

win32-def

Version:
19 lines 637 B
import { genStruct } from '../struct.helper.js'; import { DEVMODEW_Factory } from '../wingdi/wingdi.index.js'; const key = 'PRINTER_INFO_9'; const ptr = `${key}*`; const init = { pDevMode: DEVMODEW_Factory, }; export const PPRINTER_INFO_9 = ptr; export const PRINTER_INFO_9_Name = key; export const PRINTER_INFO_9_Init = init; /** * PRINTER_INFO_9 structure, * structure specifies the per-user default printer settings. * @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-9 */ export function PRINTER_INFO_9_Factory() { return genStruct(init, key, ptr); } //# sourceMappingURL=PRINTER_INFO_9.js.map