My next problem is one regarding the
SystemParametersInfo Function (Windows).
I got the code
code:
var SPI_GETWORKAREA = 48;
var intScreenX, intScreenY;
// some code not found out yet
Interop.Call("user32", "SystemParametersInfo", SPI_GETWORKAREA, 0, outRect, 0);
// some code not found out yet
Debug.Trace(intScreenX + ", " + intScreenY);
Should return the desktop size minus taskbar etc. (in difference to
Interop.Call('user32','GetSystemMetrics',0x4e);).
Anybody wants to help me out in this regard as how to solve it?