CWinApp::CreatePrinterDC
Visual Studio 2012
Call this member function to create a printer device context (DC) from the selected printer.
BOOL CreatePrinterDC( CDC& dc );
CreatePrinterDC initializes the device context that you pass in by reference, so you can use it to print.
If the function is successful, when you have finished printing, you must destroy the device context. You can let the destructor of the CDC object do it, or you can do it explicitly by calling CDC::DeleteDC.