win32-def
Version:
win32 definitions for node-ffi
25 lines • 951 B
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_1: "PRINTER_INFO_1*";
export declare const PRINTER_INFO_1_Name = "PRINTER_INFO_1";
export declare const PRINTER_INFO_1_Init: typeof init;
/**
* PRINTER_INFO_1 structure,
* Specifies general printer information
* @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-1
*/
export declare function PRINTER_INFO_1_Factory(): StructFactoryResult<PRINTER_INFO_1_Type>;
/**
* PRINTER_INFO_1 structure,
* Specifies general printer information
* @link https://learn.microsoft.com/en-us/windows/win32/printdocs/PRINTER-INFO-1
*/
export interface PRINTER_INFO_1_Type {
Flags: T.DWORD;
pDescription: T.WString;
pName: T.WString;
pComment: T.WString;
}
export {};
//# sourceMappingURL=PRINTER_INFO_1.d.ts.map