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.
file: /Techref/os/win/api/win32/func/src/f87_1.htm, 3KB, , updated: 2000/4/7 11:19, local time: 2024/11/4 11:50,
3.136.236.17:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f87_1.htm"> StartDocPrinter</A> |
Did you find what you needed? |