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

Method LoadCursorFromFile

Libraries/TabbingFramework/atlgdix.h:309–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307 return m_hCursor;
308 }
309 HCURSOR LoadCursorFromFile(LPCTSTR pstrFilename)
310 {
311 ATLASSERT(m_hCursor==NULL);
312 ATLASSERT(!::IsBadStringPtr(pstrFilename,-1));
313 m_hCursor = ::LoadCursorFromFile(pstrFilename);
314 return m_hCursor;
315 }
316 HCURSOR CreateCursor(int xHotSpot, int yHotSpot, int nWidth, int nHeight, CONST VOID *pvANDPlane, CONST VOID *pvXORPlane)
317 {
318 ATLASSERT(m_hCursor==NULL);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected