Helper class to release GDI object handle when scope ends:
| 456 | |
| 457 | // Helper class to release GDI object handle when scope ends: |
| 458 | class CGdiHandle |
| 459 | { |
| 460 | public: |
| 461 | CGdiHandle(HGDIOBJ handle) : m_handle(handle) {}; |
| 462 | ~CGdiHandle() { DeleteObject(m_handle); }; |
| 463 | private: |
| 464 | HGDIOBJ m_handle; |
| 465 | }; |
| 466 | |
| 467 | |
| 468 | // CMountPropertyPage message handlers |
nothing calls this directly
no outgoing calls
no test coverage detected