MM.h
上传用户:jyxwjx
上传日期:2020-03-13
资源大小:221k
文件大小:1k
源码类别:

多显示器编程

开发平台:

Visual C++

  1. // MM.h : MM 览侩 橇肺弊伐俊 措茄 林 庆歹 颇老
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7. #include "resource.h"       // 林 扁龋
  8. typedef struct _tMonitor
  9. {
  10. int nWidth; // Width
  11. int nHeight; // Height
  12. int nWidthVirtual; // Width Virtual
  13. int nHeightVirtual; // Height Virtual
  14. int nBitPerPixel; // BitPerPixel
  15. int nRefresh; // Refresh
  16. int nMonitor; // Monitors
  17. int nMegaPixel; // MegaPixel
  18. BOOL bSameDisplayFormat; // SameDisplayFormat
  19. RECT rcVirtual;
  20. CArray< MONITORINFOEX, MONITORINFOEX > aryMonitors;
  21. }TMONITOR;
  22. // CMMApp:
  23. // 捞 努贰胶狼 备泅俊 措秦辑绰 MM.cpp阑 曼炼窍绞矫坷.
  24. //
  25. class CMMApp : public CWinApp
  26. {
  27. public:
  28. CMMApp();
  29. TMONITOR m_infoMonitor;
  30. int GetMonitorInformation(void);
  31. // 犁沥狼
  32. public:
  33. virtual BOOL InitInstance();
  34. // 备泅
  35. afx_msg void OnAppAbout();
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. extern CMMApp theApp;