UNPKG

win32-def

Version:
35 lines 1.3 kB
import type * as T from '../../../lib/common.types.js'; import type { StructFactoryResult, StructInitType } from '../../../lib/types.js'; import type { SYSTEMTIME_Type } from '../minwinbase/SYSTEMTIME.js'; declare const init: StructInitType; export declare const PJOB_INFO_1: "JOB_INFO_1*"; export declare const JOB_INFO_1_Name = "JOB_INFO_1"; export declare const JOB_INFO_1_Init: typeof init; /** * JOB_INFO_1 structure, * The JOB_INFO_1 structure specifies print-job information such as the job-identifier value * @link https://learn.microsoft.com/en-us/windows/win32/printdocs/job-info-1 */ export declare function JOB_INFO_1_Factory(): StructFactoryResult<JOB_INFO_1_Type>; /** * JOB_INFO_1 structure, * The JOB_INFO_1 structure specifies print-job information such as the job-identifier value * @link https://learn.microsoft.com/en-us/windows/win32/printdocs/job-info-1 */ export interface JOB_INFO_1_Type { JobId: T.DWORD; pPrinterName: T.LPTSTR; pMachineName: T.LPTSTR; pUserName: T.LPTSTR; pDocument: T.LPTSTR; pDatatype: T.LPTSTR; pStatus: T.LPTSTR; Status: T.DWORD; Priority: T.DWORD; Position: T.DWORD; TotalPages: T.DWORD; PagesPrinted: T.DWORD; Submitted: SYSTEMTIME_Type; } export {}; //# sourceMappingURL=JOB_INFO_1.d.ts.map