win32-def
Version:
win32 definitions for node-ffi
26 lines • 1.04 kB
TypeScript
import type * as T from '../../../lib/common.types.js';
import type { StructFactoryResult, StructInitType } from '../../../lib/types.js';
declare const init: StructInitType;
export declare const PPRINTER_INFO_5: "PRINTER_INFO_5*";
export declare const PRINTER_INFO_5_Name = "PRINTER_INFO_5";
export declare const PRINTER_INFO_5_Init: typeof init;
/**
* PRINTER_INFO_5 structure,
* structure specifies detailed printer information.
* @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-5
*/
export declare function PRINTER_INFO_5_Factory(): StructFactoryResult<PRINTER_INFO_5_Type>;
/**
* PRINTER_INFO_5 structure,
* structure specifies detailed printer information.
* @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-5
*/
export interface PRINTER_INFO_5_Type {
pPrinterName: T.WString;
pPortName: T.WString;
Attributes: T.DWORD;
DeviceNotSelectedTimeout: T.DWORD;
TransmissionRetryTimeout: T.DWORD;
}
export {};
//# sourceMappingURL=PRINTER_INFO_5.d.ts.map