0
votes
1answer
320 views
GetSystemMetrics returning incorrect results
I'm calling the GetSystemMetrics API call from C# using the following DllImport signature:
[DllImport("user32.dll", SetLastError = true)]
internal static extern int …
0
votes
1answer
159 views
Input Values for Nativemethods.GetSystemMetrics Function in .Net
This function appears to be a way to access all sorts of system values. For example
nativemethods.GetSystemMetrics(4096) returns whether a session is remote or local. All I can find on the web are …
