MonitorDC.cpp
上传用户:maidou0901
上传日期:2008-10-19
资源大小:68k
文件大小:0k
源码类别:

多显示器编程

开发平台:

Visual C++

  1. // MonitorDC.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MonitorDC.h"
  5. #include "MultiMonitor.h"
  6. // CMonitorDC
  7. CMonitorDC::CMonitorDC( CMonitor* pMonitor )
  8. {
  9. ASSERT( pMonitor );
  10. ASSERT( pMonitor->IsMonitor() );
  11. VERIFY( Attach( pMonitor->CreateDC() ) );
  12. }
  13. CMonitorDC::~CMonitorDC()
  14. {
  15. VERIFY( DeleteDC() );
  16. }
  17. // CMonitorDC member functions