search for: hprinter

Displaying 1 result from an estimated 1 matches for "hprinter".

Did you mean: printer
2002 Oct 07
9
GetPrinter Level 2 does not get devmode
Hi all, I have uploaded the printer drivers succesfully on RedHat Linux/ Samba 2.2.4 server. I can download and print without any problems. But when I do Windows API call GetPrinter with PRINTER_INFO_2, the devmode in printer_info is always null. My code looks like HANDLE hPrinter=NULL; PRINTER_DEFAULTS pDefaults; pDefaults.DesiredAccess = PRINTER_ACCESS_USE; pDefaults.pDatatype=NULL; pDefaults.pDevMode=NULL; BOOL b = OpenPrinter(cPrinterName,&hPrinter,&pDefaults); if (b) { LPBYTE printerInfo=NULL; DWORD dwNeeded...