I'm looking for a way to find the name of the Windows default printer using unmanaged C++ (found plenty of .NET examples, but no success unmanaged). Thanks.
|
|
Maybe this would help: from the site:
In the future instead of googling "unmanaged" try googling "win32 /subject/" or "win32 api /subject/" |
||
|
|
|
How to retrieve and set the default printer in Windows: http://support.microsoft.com/default.aspx?scid=kb;EN-US;246772 |
||
|
|
|
|
Unmanaged C++ doesn't exist (and managed C++ is now C++/CLI), if you are referring to C++, using unmanaged as a tag is just sad... |
|||
|
|
|
|
Here is how to get a list of current printers and the default one if there is one set as the default. Also note: getting zero for the default printer name length is valid if the user has no printers or has not set one as default. Also being able to handle long printer names should be supported so calling GetDefaultPrinter with NULL as a buffer pointer first will return the name length and then you can allocate a name buffer big enough to hold the name.
|
|||
|
|
|
|
GetDefaultPrinter (MSDN) ought to do the trick. That will get you the name to pass to CreateDC for printing. |
||
|
|
