UNPKG

win32-def

Version:
32 lines 985 B
import * as D from '../../../lib/common.def.js'; import { SYSTEMTIME_Factory } from '../minwinbase/SYSTEMTIME.js'; import { genStruct } from '../struct.helper.js'; const key = 'JOB_INFO_1'; const ptr = `${key}*`; const init = { JobId: D.DWORD, pPrinterName: D.LPTSTR, pMachineName: D.LPTSTR, pUserName: D.LPTSTR, pDocument: D.LPTSTR, pDatatype: D.LPTSTR, pStatus: D.LPTSTR, Status: D.DWORD, Priority: D.DWORD, Position: D.DWORD, TotalPages: D.DWORD, PagesPrinted: D.DWORD, Submitted: SYSTEMTIME_Factory, }; export const PJOB_INFO_1 = ptr; export const JOB_INFO_1_Name = key; export const JOB_INFO_1_Init = 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 function JOB_INFO_1_Factory() { return genStruct(init, key, ptr); } //# sourceMappingURL=JOB_INFO_1.js.map