MCPcopy Create free account
hub / github.com/Squirrel/Squirrel.Windows / AtlLoadSysBitmapImage

Function AtlLoadSysBitmapImage

src/Setup/wtl90/atluser.h:1307–1312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1305
1306#ifdef OEMRESOURCE
1307inline HBITMAP AtlLoadSysBitmapImage(WORD wBitmapID, UINT fuLoad = LR_DEFAULTCOLOR)
1308{
1309 ATLASSERT(wBitmapID >= 32734 && wBitmapID <= 32767);
1310 ATLASSERT((fuLoad & LR_LOADFROMFILE) == 0); // this one doesn't load from a file
1311 return (HBITMAP)::LoadImage(NULL, MAKEINTRESOURCE(wBitmapID), IMAGE_BITMAP, 0, 0, fuLoad);
1312}
1313#endif // OEMRESOURCE
1314
1315inline HCURSOR AtlLoadSysCursorImage(ATL::_U_STRINGorID cursor, UINT fuLoad = LR_DEFAULTCOLOR | LR_DEFAULTSIZE, int cxDesired = 0, int cyDesired = 0)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected