// winsplp.h
typedef struct {
EBranchOfficeJobEventType eEventType;
DWORD JobId;
union {
BranchOfficeJobDataPrinted LogJobPrinted;
BranchOfficeJobDataRendered LogJobRendered;
BranchOfficeJobDataError LogJobError;
BranchOfficeJobDataPipelineFailed LogPipelineFailed;
BranchOfficeLogOfflineFileFull LogOfflineFileFull;
} JobInfo;
} BranchOfficeJobData, *PBranchOfficeJobData;
View the official Windows Driver Kit DDI referenceNo description available.
This structure contains the type of event to log (eEventType), the job ID, and the data required by the event.
eEventTypeSpecifies the type of event to be logged.
JobIdSpecifies the ID of the job on the client.
JobInfoJobInfo.LogJobPrintedDescribes the BranchOfficeJobDataPrinted type member LogJobPrinted.
JobInfo.LogJobRenderedDescribes the BranchOfficeJobDataRendered type member LogJobRendered.
JobInfo.LogJobErrorDescribes the BranchOfficeJobDataError type member LogJobError.
JobInfo.LogPipelineFailedDescribes the BranchOfficeJobDataPipelineFailed type member LogPipelineFailed.
JobInfo.LogOfflineFileFullDescribes the BranchOfficeLogOfflineFileFull type member LogOfflineFileFull.