MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / LoadCursor

Method LoadCursor

Libraries/TabbingFramework/atlgdix.h:283–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected