The StartDocPrinter function informs the print spooler that a document is to be spooled for printing.
DWORD StartDocPrinter(
HANDLE hPrinter, |
// handle of printer object |
DWORD Level, |
// structure level |
LPBYTE pDocInfo |
// address of structure |
); |
Windows 95: The DOC_INFO_2 structure has the following form:
typedef struct _DOC_INFO_2 { // dci2 LPTSTR pDocName; LPTSTR pOutputFile; LPTSTR pDatatype; DWORD dwMode; DWORD JobId; } DOC_INFO_2;
If the function succeeds, the return value identifies the print job.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
The printer handle identified by the hPrinter parameter is obtained by calling the OpenPrinter function.
The return value will never be greater than 2^31 - 1.