| 281 | // Create methods |
| 282 | |
| 283 | HCURSOR LoadCursor(_U_STRINGorID cursor) |
| 284 | { |
| 285 | ATLASSERT(m_hCursor==NULL); |
| 286 | #if (_ATL_VER >= 0x0700) |
| 287 | m_hCursor = ::LoadCursor(ATL::_AtlBaseModule.GetResourceInstance(), cursor.m_lpstr); |
| 288 | #else |
| 289 | m_hCursor = ::LoadCursor(_Module.GetResourceInstance(), cursor.m_lpstr); |
| 290 | #endif |
| 291 | return m_hCursor; |
| 292 | } |
| 293 | HCURSOR LoadOEMCursor(UINT nIDCursor) // for IDC_ types |
| 294 | { |
| 295 | ATLASSERT(m_hCursor==NULL); |
nothing calls this directly
no outgoing calls
no test coverage detected