// winppi.h
HDC GdiGetDC(
HANDLE SpoolFileHandle
);
View the official Windows Driver Kit DDI referenceNo description available.
The GdiGetDC function returns a handle to a printer's device context.
SpoolFileHandleCaller-supplied spool file handle, obtained by a previous call to GdiGetSpoolFileHandle.
If the operation succeeds, the function returns a device context handle. Otherwise the function returns NULL.
The GdiGetDC function is exported by gdi32.dll for use within a print processor's PrintDocumentOnPrintProcessor function.
A print processor can call GdiGetDC to obtain a printer's device context handle anytime after calling GdiGetSpoolFileHandle. The print processor can use the context handle to call Win32 device context functions, in order to perform such operations as applying transformations on the print image.
For additional information, see Using GDI Functions in Print Processors.