Versions in this module Expand all Collapse all v1 v1.1.0 Jul 29, 2024 v1.0.0 Jul 29, 2024 Changes in this version + const JOB_STATUS_BLOCKED_DEVQ + const JOB_STATUS_COMPLETE + const JOB_STATUS_DELETED + const JOB_STATUS_DELETING + const JOB_STATUS_ERROR + const JOB_STATUS_OFFLINE + const JOB_STATUS_PAPEROUT + const JOB_STATUS_PAUSED + const JOB_STATUS_PRINTED + const JOB_STATUS_PRINTING + const JOB_STATUS_RENDERING_LOCALLY + const JOB_STATUS_RESTART + const JOB_STATUS_RETAINED + const JOB_STATUS_SPOOLING + const JOB_STATUS_USER_INTERVENTION + const PRINTER_DRIVER_XPS + const PRINTER_ENUM_CONNECTIONS + const PRINTER_ENUM_LOCAL + func ClosePrinter(h syscall.Handle) (err error) + func Default() (string, error) + func EndDocPrinter(h syscall.Handle) (err error) + func EndPagePrinter(h syscall.Handle) (err error) + func EnumJobs(h syscall.Handle, firstJob uint32, noJobs uint32, level uint32, buf *byte, ...) (err error) + func EnumPrinters(flags uint32, name *uint16, level uint32, buf *byte, bufN uint32, ...) (err error) + func GetDefaultPrinter(buf *uint16, bufN *uint32) (err error) + func GetPrinterDriver(h syscall.Handle, env *uint16, level uint32, di *byte, n uint32, ...) (err error) + func OpenPrinter(name *uint16, h *syscall.Handle, defaults uintptr) (err error) + func ReadNames() ([]string, error) + func StartDocPrinter(h syscall.Handle, level uint32, docinfo *DOC_INFO_1) (err error) + func StartPagePrinter(h syscall.Handle) (err error) + func WritePrinter(h syscall.Handle, buf *byte, bufN uint32, written *uint32) (err error) + type DOC_INFO_1 struct + Datatype *uint16 + DocName *uint16 + OutputFile *uint16 + type DRIVER_INFO_8 struct + ColorProfiles *uint16 + ConfigFile *uint16 + CoreDriverDependencies *uint16 + DataFile *uint16 + DefaultDataType *uint16 + DependentFiles *uint16 + DriverDate syscall.Filetime + DriverPath *uint16 + DriverVersion uint64 + Environment *uint16 + HardwareID *uint16 + HelpFile *uint16 + InfPath *uint16 + MfgName *uint16 + MinInboxDriverVerDate syscall.Filetime + MinInboxDriverVerVersion uint32 + MonitorName *uint16 + Name *uint16 + OEMUrl *uint16 + PreviousNames *uint16 + PrintProcessor *uint16 + PrinterDriverAttributes uint32 + Provider *uint16 + VendorSetup *uint16 + Version uint32 + type DriverInfo struct + Attributes uint32 + DriverPath string + Environment string + Name string + type JOB_INFO_1 struct + DataType *uint16 + Document *uint16 + JobID uint32 + MachineName *uint16 + PagesPrinted uint32 + Position uint32 + PrinterName *uint16 + Priority uint32 + Status *uint16 + StatusCode uint32 + Submitted syscall.Systemtime + TotalPages uint32 + UserName *uint16 + type JobInfo struct + DataType string + DocumentName string + JobID uint32 + PagesPrinted uint32 + Position uint32 + Priority uint32 + Status string + StatusCode uint32 + Submitted time.Time + TotalPages uint32 + UserMachineName string + UserName string + type PRINTER_INFO_5 struct + Attributes uint32 + DeviceNotSelectedTimeout uint32 + PortName *uint16 + PrinterName *uint16 + TransmissionRetryTimeout uint32 + type Printer struct + func Open(name string) (*Printer, error) + func (p *Printer) Close() error + func (p *Printer) DriverInfo() (*DriverInfo, error) + func (p *Printer) EndDocument() error + func (p *Printer) EndPage() error + func (p *Printer) Jobs() ([]JobInfo, error) + func (p *Printer) StartDocument(name, datatype string) error + func (p *Printer) StartPage() error + func (p *Printer) StartRawDocument(name string) error + func (p *Printer) Write(b []byte) (int, error)