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

Method LoadIcon

Libraries/TabbingFramework/atlgdix.h:101–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99 // Create methods
100
101 HICON LoadIcon(_U_STRINGorID icon)
102 {
103 ATLASSERT(m_hIcon==NULL);
104#if (_ATL_VER >= 0x0700)
105 m_hIcon = ::LoadIcon(ATL::_AtlBaseModule.GetResourceInstance(), icon.m_lpstr);
106#else
107 m_hIcon = ::LoadIcon(_Module.GetResourceInstance(), icon.m_lpstr);
108#endif
109 return m_hIcon;
110 }
111 HICON LoadIcon(_U_STRINGorID icon, int cxDesired, int cyDesired, UINT fuLoad = 0)
112 {
113 ATLASSERT(m_hIcon==NULL);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected