win32-def
Version:
win32 definitions for node-ffi
22 lines • 934 B
TypeScript
import type { StructFactoryResult, StructInitType } from '../../../lib/types.js';
import type { DEVMODEW_Type } from '../wingdi/wingdi.index.js';
declare const init: StructInitType;
export declare const PPRINTER_INFO_9: "PRINTER_INFO_9*";
export declare const PRINTER_INFO_9_Name = "PRINTER_INFO_9";
export declare const PRINTER_INFO_9_Init: typeof 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 declare function PRINTER_INFO_9_Factory(): StructFactoryResult<PRINTER_INFO_9_Type>;
/**
* 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 interface PRINTER_INFO_9_Type {
pDevMode: DEVMODEW_Type;
}
export {};
//# sourceMappingURL=PRINTER_INFO_9.d.ts.map