Jeff
Jeff

Reputation: 8148

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 specific examples--does anyone know where I could find a complete list of input parameter values/what they return? Seems that it could be very useful.

Upvotes: 0

Views: 1159

Answers (1)

Jon Skeet
Jon Skeet

Reputation: 1502825

Is this page from PInvoke.NET what you're after?

Upvotes: 3

Related Questions