Screen area vs Work area rectangle

rcMonitor is the total resolution of the display rcWork is the max area you can use,eg if you went fullscreen maximized a window The work area is the portion of the screen not obscured by the system taskbar or by application desktop toolbars. http://msdn.microsoft.com/en-us/library/ms724947 – SPI_GETWORKAREA

What is a Windows Kernel Driver?

Kernel drivers are programs written against Windows NT’s native API (rather than the Win32 Subsystem’s API) and which execute in kernel mode on the underlying hardware. This means that a driver needs to be able to deal with switching virtual memory contexts between processes, and needs to be written to be incredibly stable — because … Read more