win32-def
Version:
win32 definitions for node-ffi
23 lines • 741 B
JavaScript
import * as D from '../../../lib/common.def.js';
import { genStruct } from '../struct.helper.js';
const key = 'PRINTER_INFO_5';
const ptr = `${key}*`;
const init = {
pPrinterName: D.WString,
pPortName: D.WString,
Attributes: D.DWORD,
DeviceNotSelectedTimeout: D.DWORD,
TransmissionRetryTimeout: D.DWORD,
};
export const PPRINTER_INFO_5 = ptr;
export const PRINTER_INFO_5_Name = key;
export const PRINTER_INFO_5_Init = init;
/**
* PRINTER_INFO_5 structure,
* structure specifies detailed printer information.
* @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-5
*/
export function PRINTER_INFO_5_Factory() {
return genStruct(init, key, ptr);
}
//# sourceMappingURL=PRINTER_INFO_5.js.map