Advertisement
Guest User

Untitled

a guest
May 21st, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. BOOL CALLBACK MonitorEnumProc(HMONITOR hmon, HDC hdc,
  2. LPRECT prc, LPARAM lParam)
  3. {
  4. // compute the color depth of monitor "hmon"
  5. int colorDepth = GetDeviceCaps(hdc, BITSPIXEL) *
  6. GetDeviceCaps(hdc, PLANES);
  7. return TRUE;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement