The ResetDC function updates the given printer or plotter device context, based on the information in the specified structure.
HDC ResetDC(
HDC hdc, // handle to device context
CONST DEVMODE *lpInitData // pointer to device context information
);
If the function succeeds, the return value is the handle of the original device context.
If the function fails, the return value is NULL.
Windows NT: To get extended error information, call GetLastError.
An application will typically use the ResetDC function when a window receives a WM_DEVMODECHANGE message. ResetDC can also be used to change the paper orientation or paper bins while printing a document.
The ResetDC function cannot be used to change the driver name, device name, or the output port. When the user changes the port connection or device name, the application must delete the original device context and create a new device context with the new information.
An application can pass an information device context to the ResetDC function. In that situation, ResetDC will always return a printer device context.
ICM: The color profile of the device context specified by the hdc parameter will be reset based on the information contained in the lpInitData member of the DEVMODE structure.
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Unsupported.
Header: Declared in wingdi.h.
Import Library: Use gdi32.lib.
Unicode: Implemented as Unicode and ANSI versions on Windows NT.
Device Contexts Overview, Device Context Functions, DeviceCapabilities, DEVMODE, Escape