UNPKG

win32-def

Version:
19 lines 625 B
import { genStruct } from '../struct.helper.js'; import { DEVMODEW_Factory } from '../wingdi/wingdi.index.js'; const key = 'PRINTER_INFO_8'; const ptr = `${key}*`; const init = { pDevMode: DEVMODEW_Factory, }; export const PPRINTER_INFO_8 = ptr; export const PRINTER_INFO_8_Name = key; export const PRINTER_INFO_8_Init = init; /** * PRINTER_INFO_8 structure, * specifies the global default printer settings. * @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-8 */ export function PRINTER_INFO_8_Factory() { return genStruct(init, key, ptr); } //# sourceMappingURL=PRINTER_INFO_8.js.map